> ## Documentation Index
> Fetch the complete documentation index at: https://www.marqeta.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# GPA Orders

> Learn how to move funds into a user's account, or into your program's fees account, using the general purpose account orders object.

export const EndpointCard = ({method = "API", title, children, href, arrow = true}) => {
  const METHOD_STYLES = {
    GET: {
      bg: "mint-bg-green-400/20 dark:mint-bg-green-400/20",
      text: "mint-text-green-700 dark:mint-text-green-400",
      border: "mint-border-green-300 dark:mint-border-green-700"
    },
    POST: {
      bg: "mint-bg-blue-400/20 dark:mint-bg-blue-400/20",
      text: "mint-text-blue-700 dark:mint-text-blue-400"
    },
    PUT: {
      bg: "mint-bg-yellow-400/20 dark:mint-bg-yellow-400/20",
      text: "mint-text-yellow-700 dark:mint-text-yellow-400"
    },
    PATCH: {
      bg: "mint-bg-orange-400/20 dark:mint-bg-orange-400/20",
      text: "mint-text-orange-700 dark:mint-text-orange-400"
    },
    DELETE: {
      bg: "mint-bg-red-400/20 dark:mint-bg-red-400/20",
      text: "mint-text-red-700 dark:mint-text-red-400"
    },
    API: {
      bg: "mint-bg-black",
      text: "mint-text-white"
    }
  };
  const MethodBadge = ({method}) => {
    const style = METHOD_STYLES[method?.toUpperCase()] ?? METHOD_STYLES.GET;
    return <span className={`
          method-pill rounded-lg font-semibold px-1.5 py-0.5 text-xs leading-5 ${style.bg} ${style.text}`}>
        {method?.toUpperCase()}
      </span>;
  };
  const content = <div className="group flex items-center gap-4 border border-gray-200 dark:border-gray-700 rounded-xl p-5 hover:border-gray-400 dark:hover:border-gray-500 hover:shadow-md transition-all cursor-pointer">
      {}
      <div className="shrink-0">
        <MethodBadge method={method} />
      </div>
      {}
      <div className="flex-1 min-w-0">
        <p className="font-semibold text-gray-900 dark:text-white text-sm leading-snug">{title}</p>
        {children && <p className="mt-1 text-sm text-gray-500 dark:text-gray-400 line-clamp-2">{children}</p>}
      </div>
    </div>;
  if (!href) return content;
  return <a href={href} className="block no-underline border-b-0 mb-2">
      {content}
    </a>;
};

The `/gpaorders` endpoint moves funds from a funding source into an account holder’s general-purpose account (GPA).

GPA orders can also be used to move funds from an account holder’s funding source into your program’s fee account.

GPA orders can be funded by the account holder or your program.

<h2 id="post_gpaorders">
  Create GPA order
</h2>

**Action:** `POST`\
**Endpoint:** `/gpaorders`

{/* <EndpointCard
title="Create GPA order"
path="/gpaorders"
method="post"
/> */}

Use this endpoint to create an order to fund an account holder’s GPA.

You can assess a [fee](/core-api/fees/) while funding a GPA by using the optional `fees` array to attach one or more fee resources to the GPA order. When you create a GPA order, the GPA is first credited for the fees, then debited at funding time.

<h3 id="_request_body">
  Request body
</h3>

| Fields                                                                | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| --------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| amount<br /><br />decimal<br /><br />Required                         | Amount to fund.<br /><br />**Allowable Values:**<br /><br />decimal<br /><br />**Format:**<br />0.00                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| business\_token<br /><br />string<br /><br />Optional                 | Unique identifier of the business.<br /><br />Pass either a <code>business\_token</code> or a <code>user\_token</code>, not both.<br /><br />Send a <code>GET</code> request to <code>/businesses</code> to retrieve business tokens.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| currency\_code<br /><br />string<br /><br />Required                  | Three-digit ISO 4217 currency code.<br /><br />**Allowable Values:**<br /><br />Valid three-digit <a href="https://www.iso.org/iso-4217-currency-codes.html" target="_blank" rel="noopener">ISO 4217 currency code</a>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| fees<br /><br />array of objects<br /><br />Optional                  | List of fees associated with the funding transaction.<br /><br />**Allowable Values:**<br /><br />Valid array of one or more <code>fees</code> objects                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| fees\[].**memo**<br /><br />string<br /><br />Optional                | Additional text describing the fee.<br /><br />**Allowable Values:**<br /><br />1–255 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| fees\[].**overrideAmount**<br /><br />decimal<br /><br />Optional     | Dynamic fee amount that overrides the <code>fee.amount</code> field value.<br /><br />**Allowable Values:**<br /><br />decimal<br /><br />**Format:**<br />0.00                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| fees\[].**tags**<br /><br />string<br /><br />Optional                | Descriptive metadata about the fee.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| fees\[].**token**<br /><br />string<br /><br />Required               | Unique identifier of the fee.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| funding\_source\_address\_token<br /><br />string<br /><br />Optional | Unique identifier of the funding source address to use for this order. If your funding source is an ACH account, then a funding source address is not required. If your funding source is a payment card, you must have at least one funding source address in order to create a GPA order. Send a <code>GET</code> request to <code>/fundingsources/addresses/user/{token}</code> to retrieve addresses for a specific user.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                                                                                                                                                                                                   |
| funding\_source\_token<br /><br />string<br /><br />Required          | Unique identifier of the funding source to use for this order.<br /><br />You do not have to supply a funding source token value in this call if you have a default funding source set up (verify the funding source’s <code>is\_default\_account</code> field). If you have only one funding source, then this source is used as the default. If you have multiple funding sources and none are configured as the default, then an error is returned.<br /><br />Send a <code>GET</code> request to <code>/fundingsources/user/{user_token}</code> to retrieve funding source tokens for a user or to <code>/fundingsources/business/{business_token}</code> to retrieve funding source tokens for a business.<br /><br />**Allowable Values:**<br /><br />1–36 chars |
| memo<br /><br />string<br /><br />Optional                            | Additional descriptive text.<br /><br />**Allowable Values:**<br /><br />1–99 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| tags<br /><br />string<br /><br />Optional                            | Comma-delimited list of tags describing the GPA order.<br /><br />**Allowable Values:**<br /><br />1–255 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| token<br /><br />string<br /><br />Optional                           | Unique identifier of the GPA order.<br /><br />If you do not include a token, the system will generate one automatically. This token is necessary for use in other calls, so we recommend that rather than let the system generate one, you use a simple string that is easy to remember. This value cannot be updated.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                                                                                                                                                                                                                                                                                                         |
| user\_token<br /><br />string<br /><br />Optional                     | Unique identifier of the user.<br /><br />Pass either a <code>user\_token</code> or a <code>business\_token</code>, not both.<br /><br />Send a <code>GET</code> request to <code>/users</code> to retrieve business tokens.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| source\_load\_type<br /><br />string<br /><br />Optional              | Unique identifier of how the funding source is loaded.<br /><br />This field is only available for specific card programs. For more information, contact your Marqeta representative.<br /><br />**Allowable Values:**<br /><br /><code>ach</code>, <code>otc</code>, <code>debitcard</code>, <code>promotion</code>, <code>earnedwageaccess</code>                                                                                                                                                                                                                                                                                                                                                                                                                    |

<h3 id="_sample_request_body">
  Sample request body
</h3>

```json JSON lines wrap theme={null}
{
  "token": "my_gpaorder_01",
  "user_token": "my_user_01",
  "source_load_type": "ach",
  "amount": 1000,
  "currency_code": "USD",
  "funding_source_token": "my_program_funding_source_01"
}
```

<h3 id="_response_body">
  Response body
</h3>

| Fields                                                                                                                                                                 | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| amount<br /><br />decimal<br /><br />Returned                                                                                                                          | Amount funded.<br /><br />**Allowable Values:**<br /><br />decimal<br /><br />**Format:**<br />0.00                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| business\_token<br /><br />string<br /><br />Conditionally returned                                                                                                    | Unique identifier of the business.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />Existing <code>business\_token</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| created\_time<br /><br />datetime<br /><br />Returned                                                                                                                  | Date and time when the GPA order was created, in UTC.<br /><br />**Allowable Values:**<br /><br />datetime<br /><br />**Format:**<br />yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| currency\_code<br /><br />string<br /><br />Returned                                                                                                                   | Three-digit ISO 4217 currency code.<br /><br />**Allowable Values:**<br /><br />Valid three-digit <a href="https://www.iso.org/iso-4217-currency-codes.html" target="_blank" rel="noopener">ISO 4217 currency code</a>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| fees<br /><br />array of objects<br /><br />Conditionally returned                                                                                                     | List of fees associated with the funding transaction.<br /><br />This array is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />Valid array of one or more <code>fees</code> objects                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| fees\[].**fee**<br /><br />object<br /><br />Returned                                                                                                                  | Contains details about the fee.<br /><br />**Allowable Values:**<br /><br /><code>amount</code>, <code>created\_time</code>, <code>currency\_code</code>, <code>last\_modified\_time</code>, <code>name</code>, <code>tags</code>, <code>token</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| fees\[].fee.**amount**<br /><br />decimal<br /><br />Returned                                                                                                          | Amount of the fee.<br /><br />**Allowable Values:**<br /><br />decimal<br /><br />**Format:**<br />0.00                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| fees\[].fee.**created\_time**<br /><br />datetime<br /><br />Returned                                                                                                  | Date and time when the <code>fees</code> object was created, in UTC.<br /><br />**Allowable Values:**<br /><br />datetime<br /><br />**Format:**<br />yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| fees\[].fee.**currency\_code**<br /><br />string<br /><br />Returned                                                                                                   | Three-digit ISO 4217 currency code.<br /><br />**Allowable Values:**<br /><br />Valid three-digit <a href="https://www.iso.org/iso-4217-currency-codes.html" target="_blank" rel="noopener">ISO 4217 currency code</a>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| fees\[].fee.**last\_modified\_time**<br /><br />datetime<br /><br />Returned                                                                                           | Date and time when the <code>fees</code> object was last modified, in UTC.<br /><br />**Allowable Values:**<br /><br />datetime<br /><br />**Format:**<br />yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| fees\[].fee.**name**<br /><br />string<br /><br />Returned                                                                                                             | Name of the fee.<br /><br />**Allowable Values:**<br /><br />50 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| fees\[].fee.**tags**<br /><br />string<br /><br />Conditionally returned                                                                                               | Descriptive metadata about the fee.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| fees\[].fee.**token**<br /><br />string<br /><br />Returned                                                                                                            | Unique identifier of the <code>fees</code> object.<br /><br />**Allowable Values:**<br /><br />Existing <code>fees</code> object token                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| fees\[].**memo**<br /><br />string<br /><br />Conditionally returned                                                                                                   | Additional text describing the fee.<br /><br />**Allowable Values:**<br /><br />1–255 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| fees\[].**overrideAmount**<br /><br />decimal<br /><br />Conditionally returned                                                                                        | Dynamic fee amount that overrides the <code>fee.amount</code> field value.<br /><br />**Allowable Values:**<br /><br />decimal<br /><br />**Format:**<br />0.00                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| fees\[].**tags**<br /><br />string<br /><br />Conditionally returned                                                                                                   | Descriptive metadata about the fee.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| fees\[].**token**<br /><br />string<br /><br />Returned                                                                                                                | Unique identifier of the fee.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| fees\[].**transaction\_token**<br /><br />string<br /><br />Returned                                                                                                   | Unique identifier of the fee transaction.<br /><br />**Allowable Values:**<br /><br />36 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| funding<br /><br />object<br /><br />Returned                                                                                                                          | Contains funding information for the transaction, including funding amount, type, and time.<br /><br />**Allowable Values:**<br /><br /><code>amount</code>, <code>gateway\_log</code>, <code>source</code>, <code>source\_address</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| funding.**amount**<br /><br />decimal<br /><br />Conditionally returned                                                                                                | Amount of funds loaded into the GPA.<br /><br />**Allowable Values:**<br /><br />decimal<br /><br />**Format:**<br />0.00                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| funding.**gateway\_log**<br /><br />object<br /><br />Conditionally returned                                                                                           | Contains information from the JIT Funding gateway in response to a funding request.<br /><br />**Allowable Values:**<br /><br /><code>duration</code>, <code>message</code>, <code>order\_number</code>, <code>response</code>, <code>timed\_out</code>, <code>transaction\_id</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| funding.gateway\_log.**duration**<br /><br />integer<br /><br />Conditionally returned                                                                                 | Length of time in milliseconds that the gateway took to respond to a funding request.<br /><br />**Allowable Values:**<br /><br />Any integer                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| funding.gateway\_log.**message**<br /><br />string<br /><br />Returned                                                                                                 | Message about the status of the funding request. Useful for determining whether it was approved and completed successfully, declined by the gateway, or timed out.<br /><br />**Allowable Values:**<br /><br /><code>Approved or completed successfully</code>, <code>Declined by gateway</code>, <code>Operation timeout</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| funding.gateway\_log.**order\_number**<br /><br />string<br /><br />Returned                                                                                           | Customer order number, same value as <code>transaction.token</code>.<br /><br />**Allowable Values:**<br /><br />Existing <code>transaction.token</code> value                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| funding.gateway\_log.**response**<br /><br />object<br /><br />Conditionally returned                                                                                  | Contains information from the gateway in response to a funding request.<br /><br />**Allowable Values:**<br /><br /><code>code</code>, <code>data</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| funding.gateway\_log.response.**code**<br /><br />string<br /><br />Returned                                                                                           | Code received from the gateway.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| funding.gateway\_log.response.**data**<br /><br />object<br /><br />Conditionally returned                                                                             | Contains the gateway’s information about the JIT Funding transaction.<br /><br />**Allowable Values:**<br /><br /><code>jit\_funding</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| funding.gateway\_log.response.data.**jit\_funding**<br /><br />object<br /><br />Returned                                                                              | Contains information about the JIT Funding load event, in which funds are loaded into an account.<br /><br />This object is returned if your program uses JIT Funding.<br /><br />**Allowable Values:**<br /><br /><code>acting\_user\_token</code>, <code>address\_verification</code>, <code>amount</code>, <code>balances</code>, <code>business\_token</code>, <code>decline\_reason</code>, <code>incremental\_authorization\_jit\_funding\_tokens</code>, <code>memo</code>, <code>method</code>, <code>original\_jit\_funding\_token</code>, <code>tags</code>, <code>token</code>, <code>user\_token</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| funding.gateway\_log.response.data.jit\_funding.**acting\_user\_token**<br /><br />string<br /><br />Conditionally returned                                            | User who conducted the transaction.<br /><br />Can be a child user configured to share its parent’s account balance.<br /><br />**Allowable Values:**<br /><br />36 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| funding.gateway\_log.response.data.jit\_funding.**address\_verification**<br /><br />object<br /><br />Conditionally returned                                          | Contains address verification data used to make JIT Funding decisions.<br /><br />**Allowable Values:**<br /><br /><code>gateway</code>, <code>issuer</code>, <code>request</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.**gateway**<br /><br />object<br /><br />Conditionally returned                                  | Contains address verification data consisting of address data entered by the cardholder, address data held by the Marqeta platform, and an assertion by the Marqeta platform as to whether the two sets of data match.<br /><br />**Allowable Values:**<br /><br /><code>on\_file</code>, <code>response</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.gateway.**on\_file**<br /><br />object<br /><br />Conditionally returned                         | Contains address verification information.<br /><br />**Allowable Values:**<br /><br /><code>postal\_code</code>, <code>street\_address</code>, <code>zip</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.gateway.on\_file.**postal\_code**<br /><br />string<br /><br />Conditionally returned            | Postal code of the address.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.gateway.on\_file.**street\_address**<br /><br />string<br /><br />Conditionally returned         | Street name and number of the address.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.gateway.on\_file.**zip**<br /><br />string<br /><br />Conditionally returned                     | United States ZIP code of the address.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.gateway.**response**<br /><br />object<br /><br />Conditionally returned                         | Response codes and memos for account name verification, address verification, card security verification, and transactions.<br /><br />**Allowable Values:**<br /><br /><code>additional\_information</code>, <code>code</code>, <code>memo</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.gateway.response.**additional\_information**<br /><br />string<br /><br />Conditionally returned | Additional information about the transaction, such as velocity control details.<br /><br />This field is returned in transaction response objects only. It is not returned in address verification or card security verification response objects.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.gateway.response.**code**<br /><br />string<br /><br />Returned                                  | Four-digit response code for address verification, card security code verification, or transactions.<br /><br />For account name verification, the four digits correspond with assertions that the first, middle, last, and full name of the cardholder on the Marqeta platform match the data provided by the cardholder.<br /><br />- <code>0</code> indicates no validation was performed<br />- <code>1</code> indicates the match was unsuccessful (not matched)<br />- <code>2</code> indicates the match was partial<br />- <code>3</code> indicates the match was exact<br /><br />For example:<br /><br />Code / First Name / Middle Name / Last Name / Full Name<br /><code>0000</code> / Not validated / Not validated / Not validated / Not validated<br /><code>1111</code> / Not matched / Not matched / Not matched / Not matched<br /><code>3333</code> / Exact match / Exact match / Exact match / Exact match<br /><code>1232</code> / Not matched / Partial match / Exact match / Partial match<br /><br />For address verification responses, the code is an assertion by the Marqeta platform as to whether its address verification data matches that provided by the cardholder:<br /><br />Code / Address / Postal Code<br /><code>0000</code> / Match / Match<br /><code>0001</code> / Match / Not matched<br /><code>0100</code> / Not matched / Match<br /><code>0101</code> / Not matched / Not matched<br /><code>0200</code> / Data not present / Match<br /><code>0201</code> / Data not present / Not matched<br /><code>0002</code> / Match / Data not present<br /><code>0102</code> / Not matched / Data not present<br /><code>0303</code> / Not validated / Not validated<br /><br />For card security verification, the code indicates whether the verification check passed and can have these possible values:<br /><br />- <code>0000</code> – Passed<br />- <code>0001</code> – Did not pass<br /><br />For a transaction, the code describes the outcome of the attempted transaction. For the full list of transaction codes, see <a href="/developer-guides/about-transactions/#_transaction_response_codes">Transaction response codes</a>.<br /><br />**Allowable Values:**<br /><br />Four-digit code |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.gateway.response.**memo**<br /><br />string<br /><br />Returned                                  | Additional text that describes the response.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.**issuer**<br /><br />object<br /><br />Conditionally returned                                   | Contains address verification data consisting of address data entered by the cardholder, address data held by the Marqeta platform, and an assertion by the Marqeta platform as to whether the two sets of data match.<br /><br />**Allowable Values:**<br /><br /><code>on\_file</code>, <code>response</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.issuer.**on\_file**<br /><br />object<br /><br />Conditionally returned                          | Contains address verification information.<br /><br />**Allowable Values:**<br /><br /><code>postal\_code</code>, <code>street\_address</code>, <code>zip</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.issuer.on\_file.**postal\_code**<br /><br />string<br /><br />Conditionally returned             | Postal code of the address.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.issuer.on\_file.**street\_address**<br /><br />string<br /><br />Conditionally returned          | Street name and number of the address.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.issuer.on\_file.**zip**<br /><br />string<br /><br />Conditionally returned                      | United States ZIP code of the address.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.issuer.**response**<br /><br />object<br /><br />Conditionally returned                          | Response codes and memos for account name verification, address verification, card security verification, and transactions.<br /><br />**Allowable Values:**<br /><br /><code>additional\_information</code>, <code>code</code>, <code>memo</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.issuer.response.**additional\_information**<br /><br />string<br /><br />Conditionally returned  | Additional information about the transaction, such as velocity control details.<br /><br />This field is returned in transaction response objects only. It is not returned in address verification or card security verification response objects.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.issuer.response.**code**<br /><br />string<br /><br />Returned                                   | Four-digit response code for address verification, card security code verification, or transactions.<br /><br />For account name verification, the four digits correspond with assertions that the first, middle, last, and full name of the cardholder on the Marqeta platform match the data provided by the cardholder.<br /><br />- <code>0</code> indicates no validation was performed<br />- <code>1</code> indicates the match was unsuccessful (not matched)<br />- <code>2</code> indicates the match was partial<br />- <code>3</code> indicates the match was exact<br /><br />For example:<br /><br />Code / First Name / Middle Name / Last Name / Full Name<br /><code>0000</code> / Not validated / Not validated / Not validated / Not validated<br /><code>1111</code> / Not matched / Not matched / Not matched / Not matched<br /><code>3333</code> / Exact match / Exact match / Exact match / Exact match<br /><code>1232</code> / Not matched / Partial match / Exact match / Partial match<br /><br />For address verification responses, the code is an assertion by the Marqeta platform as to whether its address verification data matches that provided by the cardholder:<br /><br />Code / Address / Postal Code<br /><code>0000</code> / Match / Match<br /><code>0001</code> / Match / Not matched<br /><code>0100</code> / Not matched / Match<br /><code>0101</code> / Not matched / Not matched<br /><code>0200</code> / Data not present / Match<br /><code>0201</code> / Data not present / Not matched<br /><code>0002</code> / Match / Data not present<br /><code>0102</code> / Not matched / Data not present<br /><code>0303</code> / Not validated / Not validated<br /><br />For card security verification, the code indicates whether the verification check passed and can have these possible values:<br /><br />- <code>0000</code> – Passed<br />- <code>0001</code> – Did not pass<br /><br />For a transaction, the code describes the outcome of the attempted transaction. For the full list of transaction codes, see <a href="/developer-guides/about-transactions/#_transaction_response_codes">Transaction response codes</a>.<br /><br />**Allowable Values:**<br /><br />Four-digit code |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.issuer.response.**memo**<br /><br />string<br /><br />Returned                                   | Additional text that describes the response.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.**request**<br /><br />object<br /><br />Conditionally returned                                  | Contains address verification information.<br /><br />**Allowable Values:**<br /><br /><code>postal\_code</code>, <code>street\_address</code>, <code>zip</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.request.**postal\_code**<br /><br />string<br /><br />Conditionally returned                     | Postal code of the address.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.request.**street\_address**<br /><br />string<br /><br />Conditionally returned                  | Street name and number of the address.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.request.**zip**<br /><br />string<br /><br />Conditionally returned                              | United States ZIP code of the address.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| funding.gateway\_log.response.data.jit\_funding.**jit\_account\_name\_verification**<br /><br />object<br /><br />Conditionally returned                               | Contains account name verification data used to make JIT Funding decisions from one of the following objects:<br /><br />- The <code>gateway</code> object, which contains account name verification data from your JIT Funding gateway.<br />- The <code>issuer</code> object, which contains account name verification data from the Marqeta platform.<br />- The <code>request</code> object, which contains account name verification data as it appears in a JIT Funding request.<br /><br />**Allowable Values:**<br /><br /><code>gateway</code>, <code>issuer</code>, <code>request</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| funding.gateway\_log.response.data.jit\_funding.jit\_account\_name\_verification.**gateway**<br /><br />object<br /><br />Conditionally returned                       | Contains account name verification data used to make JIT Funding decisions.<br /><br />**Allowable Values:**<br /><br /><code>first\_name</code>, <code>last\_name</code>, <code>middle\_name</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| funding.gateway\_log.response.data.jit\_funding.jit\_account\_name\_verification.**issuer**<br /><br />object<br /><br />Conditionally returned                        | Contains account name verification data used to make JIT Funding decisions.<br /><br />**Allowable Values:**<br /><br /><code>first\_name</code>, <code>last\_name</code>, <code>middle\_name</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| funding.gateway\_log.response.data.jit\_funding.jit\_account\_name\_verification.**request**<br /><br />object<br /><br />Conditionally returned                       | Contains account name verification data used to make JIT Funding decisions.<br /><br />**Allowable Values:**<br /><br /><code>first\_name</code>, <code>last\_name</code>, <code>middle\_name</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| funding.gateway\_log.response.data.jit\_funding.**amount**<br /><br />decimal<br /><br />Returned                                                                      | Requested amount of funding.<br /><br />**Allowable Values:**<br /><br />0 min<br /><br />**Format:**<br />0.00                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| funding.gateway\_log.response.data.jit\_funding.**balances**<br /><br />object<br /><br />Conditionally returned                                                       | Contains the GPA’s balance details.<br /><br />**Allowable Values:**<br /><br /><code>available\_balance</code>, <code>balances</code>, <code>cached\_balance</code>, <code>credit\_balance</code>, <code>currency\_code</code>, <code>impacted\_amount</code>, <code>last\_updated\_time</code>, <code>ledger\_balance</code>, <code>pending\_credits</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| funding.gateway\_log.response.data.jit\_funding.**business\_token**<br /><br />string<br /><br />Conditionally returned                                                | Holder of the business account that was funded.<br /><br />**Allowable Values:**<br /><br />36 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| funding.gateway\_log.response.data.jit\_funding.**decline\_reason**<br /><br />string<br /><br />Conditionally returned                                                | Reason why the transaction was declined.<br /><br />**Allowable Values:**<br /><br /><code>AMOUNT\_LIMIT\_EXCEEDED</code>, <code>BLOCKED\_BY\_CARDHOLDER</code>, <code>BLOCKED\_BY\_ISSUER</code>, <code>BLOCKED\_MERCHANT\_BY\_CARDHOLDER</code>, <code>CARD\_NOT\_ACTIVE</code>, <code>CARDHOLDER\_NOT\_ACTIVE</code>, <code>CLOSED\_ACCOUNT</code>, <code>DUPLICATE\_TRANSACTION</code>, <code>EXPIRED\_CARD</code>, <code>INSUFFICIENT\_FUNDS</code>, <code>INVALID\_AMOUNT</code>, <code>INVALID\_CARD</code>, <code>INVALID\_MERCHANT</code>, <code>NO\_CHECKING\_ACCOUNT</code>, <code>NO\_CREDIT\_ACCOUNT</code>, <code>NO\_SAVINGS\_ACCOUNT</code>, <code>REVOCATION\_ALL\_AUTHORIZATION\_ORDER</code>, <code>REVOCATION\_AUTHORIZATION\_ORDER</code>, <code>SOFT\_DECLINE\_AUTHENTICATION\_REQUIRED</code>, <code>SOFT\_DECLINE\_PIN\_REQUIRED</code>, <code>STOP\_PAYMENT</code>, <code>SUSPECTED\_FRAUD</code>, <code>TRANSACTION\_COUNT\_LIMIT\_EXCEEDED</code>, <code>TRANSACTION\_NOT\_PERMITTED</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| funding.gateway\_log.response.data.jit\_funding.**incremental\_authorization\_jit\_funding\_tokens**<br /><br />array of strings<br /><br />Conditionally returned     | Array of tokens referencing the JIT Funding tokens of all previous associated incremental authorization JIT Funding requests. Useful for ascertaining the final transaction amount when the original amount was incremented.<br /><br />**Allowable Values:**<br /><br />Existing incremental authorization JIT Funding tokens                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| funding.gateway\_log.response.data.jit\_funding.**memo**<br /><br />string<br /><br />Conditionally returned                                                           | Additional information that describes the JIT Funding transaction.<br /><br />**Allowable Values:**<br /><br />99 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| funding.gateway\_log.response.data.jit\_funding.**method**<br /><br />string<br /><br />Returned                                                                       | JIT Funding response type. See <a href="/core-api/gateway-jit-funding-messages/#_the_jit_funding_object">The jit\_funding object</a> for the purpose, funding event type, and description of each method.<br /><br />**Allowable Values:**<br /><br /><code>pgfs.adjustment.credit</code>, <code>pgfs.adjustment.debit</code>, <code>pgfs.authorization</code>, <code>pgfs.authorization.account\_verification</code>, <code>pgfs.authorization.capture</code>, <code>pgfs.authorization.capture.chargeback</code>, <code>pgfs.authorization.capture.chargeback.reversal</code>, <code>pgfs.authorization.incremental</code>, <code>pgfs.authorization.reversal</code>, <code>pgfs.authorization.standin</code>, <code>pgfs.auth\_plus\_capture</code>, <code>pgfs.auth\_plus\_capture.standin</code>, <code>pgfs.balanceinquiry</code>, <code>pgfs.billpayment</code>, <code>pgfs.billpayment.capture</code>, <code>pgfs.billpayment.reversal</code>, <code>pgfs.directdeposit.credit</code>, <code>pgfs.directdeposit.credit.reversal</code>, <code>pgfs.directdeposit.debit</code>, <code>pgfs.directdeposit.debit.reversal</code>, <code>pgfs.dispute.credit</code>, <code>pgfs.dispute.debit</code>, <code>pgfs.force\_capture</code>, <code>pgfs.network.load</code>, <code>pgfs.original.credit.authorization</code>, <code>pgfs.original.credit.auth\_plus\_capture</code>, <code>pgfs.pindebit.chargeback</code>, <code>pgfs.pindebit.chargeback.reversal</code>, <code>pgfs.product.inquiry</code>, <code>pgfs.refund</code>, <code>pgfs.refund.authorization</code>, <code>pgfs.refund.authorization.reversal</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| funding.gateway\_log.response.data.jit\_funding.**original\_jit\_funding\_token**<br /><br />string<br /><br />Conditionally returned                                  | Unique identifier of the first associated JIT Funding message. Useful for correlating related JIT Funding messages (that is, those associated with the same GPA order). Not included in the first of any set of related messages.<br /><br />**Allowable Values:**<br /><br />36 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| funding.gateway\_log.response.data.jit\_funding.**tags**<br /><br />string<br /><br />Conditionally returned                                                           | Customer-defined tags related to the JIT Funding transaction.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| funding.gateway\_log.response.data.jit\_funding.**token**<br /><br />string<br /><br />Returned                                                                        | Existing JIT Funding token matching the <code>funding.gateway\_log.transaction\_id</code> field of the associated GPA order.<br /><br />**NOTE:** The <code>transaction\_id</code> field updates if a subsequent JIT Funding message associated with that GPA order is sent. If multiple JIT Funding messages are associated with the same GPA order, the <code>transaction\_id</code> field matches the token of the most recent message.<br /><br />**Allowable Values:**<br /><br />36 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| funding.gateway\_log.response.data.jit\_funding.**user\_token**<br /><br />string<br /><br />Returned                                                                  | Holder of the user account that was funded.<br /><br />**Allowable Values:**<br /><br />36 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| funding.gateway\_log.response.data.**flex**<br /><br />object<br /><br />Conditionally returned                                                                        | Contains information about a Flexible Credential transaction.<br /><br />**Allowable Values:**<br /><br /><code>action</code>, <code>eligible</code>, <code>eligible\_products</code>, <code>secondary\_credential\_identifier</code>, <code>selected\_product</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| funding.gateway\_log.response.data.flex.**action**<br /><br />string<br /><br />Conditionally returned                                                                 | Indicates whether the Flexible Credential transaction object is actionable (<code>inquiry</code>) or merely informative (<code>advice</code>).<br /><br />**Allowable Values:**<br /><br /><code>inquiry</code>, <code>advice</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| funding.gateway\_log.response.data.flex.**eligible**<br /><br />string<br /><br />Conditionally returned                                                               | Indicates whether or not the transaction is eligible for Flexible Credential transactions.<br /><br />**Allowable Values:**<br /><br /><code>true</code>, <code>false</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| funding.gateway\_log.response.data.flex.**eligible\_products**<br /><br />array of strings<br /><br />Conditionally returned                                           | Specifies which of the payment instrument’s credentials is eligible for this transaction:<br /><br />- A value of <code>DEBIT</code> indicates the primary credential.<br />- A value of <code>LOAN</code> indicates the secondary credential.<br /><br />**Allowable Values:**<br /><br /><code>DEBIT</code>, <code>LOAN</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| funding.gateway\_log.response.data.flex.**secondary\_credential\_identifier**<br /><br />string<br /><br />Conditionally returned                                      | Identifies the secondary credential used in the transaction, if applicable.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| funding.gateway\_log.response.data.flex.**selected\_product**<br /><br />string<br /><br />Conditionally returned                                                      | Indicates the eligible product that was used in the transaction.<br /><br />**Allowable Values:**<br /><br /><code>DEBIT</code>, <code>LOAN</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| funding.gateway\_log.**timed\_out**<br /><br />boolean<br /><br />Conditionally returned                                                                               | Whether the gateway sent a response (<code>true</code>) or timed out (<code>false</code>).<br /><br />**Allowable Values:**<br /><br /><code>true</code>, <code>false</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| funding.gateway\_log.**transaction\_id**<br /><br />string<br /><br />Returned                                                                                         | Customer-defined identifier for the transaction.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| funding.**source**<br /><br />object<br /><br />Returned                                                                                                               | Contains funding source information for the transaction, including the funding type and time.<br /><br />**Allowable Values:**<br /><br /><code>active</code>, <code>created\_time</code>, <code>is\_default\_account</code>, <code>last\_modified\_time</code>, <code>token</code>, <code>type</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| funding.source.**active**<br /><br />boolean<br /><br />Returned                                                                                                       | Whether the funding source is active.<br /><br />**Allowable Values:**<br /><br /><code>true</code>, <code>false</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| funding.source.**created\_time**<br /><br />datetime<br /><br />Returned                                                                                               | Date and time when the funding source was created, in UTC.<br /><br />**Allowable Values:**<br /><br />datetime<br /><br />**Format:**<br />yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| funding.source.**is\_default\_account**<br /><br />boolean<br /><br />Returned                                                                                         | Whether the GPA order unload’s funding source is the default funding account.<br /><br />**Allowable Values:**<br /><br /><code>true</code>, <code>false</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| funding.source.**last\_modified\_time**<br /><br />datetime<br /><br />Returned                                                                                        | Date and time when the funding source was last modified, in UTC.<br /><br />**Allowable Values:**<br /><br />datetime<br /><br />**Format:**<br />yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| funding.source.**token**<br /><br />string<br /><br />Returned                                                                                                         | Unique identifier of the funding source.<br /><br />**Allowable Values:**<br /><br />Format: UUID                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| funding.source.**type**<br /><br />string<br /><br />Returned                                                                                                          | Funding type of the funding source.<br /><br />**Allowable Values:**<br /><br /><code>ach</code>, <code>paymentcard</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| funding.**source\_address**<br /><br />object<br /><br />Conditionally returned                                                                                        | Contains information about the billing address of the funding source.<br /><br />**Allowable Values:**<br /><br /><code>active</code>, <code>address\_1</code>, <code>address\_2</code>, <code>business\_token</code>, <code>city</code>, <code>country</code>, <code>created\_time</code>, <code>first\_name</code>, <code>is\_default\_address</code>, <code>last\_modified\_time</code>, <code>last\_name</code>, <code>phone</code>, <code>postal\_code</code>, <code>state</code>, <code>token</code>, <code>user\_token</code>, <code>zip</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| funding.source\_address.**active**<br /><br />boolean<br /><br />Conditionally returned                                                                                | Whether the address is active.<br /><br />**Allowable Values:**<br /><br /><code>true</code>, <code>false</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| funding.source\_address.**address\_1**<br /><br />string<br /><br />Returned                                                                                           | Street address of the funding source.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| funding.source\_address.**address\_2**<br /><br />string<br /><br />Conditionally returned                                                                             | Additional address information for the funding source.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| funding.source\_address.**business\_token**<br /><br />string<br /><br />Conditionally returned                                                                        | Unique identifier of the business account holder associated with the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| funding.source\_address.**city**<br /><br />string<br /><br />Returned                                                                                                 | City of the funding source.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| funding.source\_address.**country**<br /><br />string<br /><br />Returned                                                                                              | Country of the funding source.<br /><br />**Allowable Values:**<br /><br />1–40 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| funding.source\_address.**created\_time**<br /><br />datetime<br /><br />Returned                                                                                      | Date and time when the address was created, in UTC.<br /><br />**Allowable Values:**<br /><br />datetime<br /><br />**Format:**<br />yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| funding.source\_address.**first\_name**<br /><br />string<br /><br />Returned                                                                                          | First name of the account holder associated with the funding source.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| funding.source\_address.**is\_default\_address**<br /><br />boolean<br /><br />Conditionally returned                                                                  | Whether this address is the default address used by the funding source.<br /><br />**Allowable Values:**<br /><br /><code>true</code>, <code>false</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| funding.source\_address.**last\_modified\_time**<br /><br />datetime<br /><br />Returned                                                                               | Date and time when the address was last modified, in UTC.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />datetime<br /><br />**Format:**<br />yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| funding.source\_address.**last\_name**<br /><br />string<br /><br />Returned                                                                                           | Last name of the account holder associated with the funding source.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| funding.source\_address.**phone**<br /><br />string<br /><br />Conditionally returned                                                                                  | Phone number of the funding source.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| funding.source\_address.**postal\_code**<br /><br />string<br /><br />Returned                                                                                         | Postal code of the funding source.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| funding.source\_address.**state**<br /><br />string<br /><br />Returned                                                                                                | Two-character state, provincial, or territorial abbreviation.<br /><br />For the complete list, see <a href="/core-api/kyc-verification/#_valid_state_provincial_territorial_and_federal_abbreviations">Valid state, provincial, territorial, and federal abbreviations</a>.<br /><br />**Allowable Values:**<br /><br />2 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| funding.source\_address.**token**<br /><br />string<br /><br />Returned                                                                                                | Unique identifier of the <code>funding\_source\_address</code> object.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| funding.source\_address.**user\_token**<br /><br />string<br /><br />Conditionally returned                                                                            | Unique identifier of the user account holder associated with the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| funding.source\_address.**zip**<br /><br />string<br /><br />Returned                                                                                                  | United States ZIP code of the funding source.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| funding\_source\_address\_token<br /><br />string<br /><br />Conditionally returned                                                                                    | Unique identifier of the funding source address to use for this order.<br /><br />**Allowable Values:**<br /><br />Existing <code>funding\_source\_address</code> token                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| funding\_source\_token<br /><br />string<br /><br />Returned                                                                                                           | Unique identifier of the funding source to use for this order.<br /><br />**Allowable Values:**<br /><br />Existing <code>funding\_source</code> token                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| gateway\_message<br /><br />string<br /><br />Conditionally returned                                                                                                   | Message about the status of the funding request. Useful for determining whether it was approved and completed successfully, declined by the gateway, or timed out.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br /><code>Approved or completed successfully</code>, <code>Declined by gateway</code>, <code>Operation timeout</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| gateway\_token<br /><br />integer<br /><br />Conditionally returned                                                                                                    | Unique identifier of the JIT Funding request and response.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />Existing <code>gateway\_token</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| jit\_funding<br /><br />object<br /><br />Conditionally returned                                                                                                       | Contains information about the JIT Funding load event, in which funds are loaded into an account.<br /><br />This object is returned if your program uses JIT Funding.<br /><br />**Allowable Values:**<br /><br /><code>acting\_user\_token</code>, <code>address\_verification</code>, <code>amount</code>, <code>balances</code>, <code>business\_token</code>, <code>decline\_reason</code>, <code>incremental\_authorization\_jit\_funding\_tokens</code>, <code>memo</code>, <code>method</code>, <code>original\_jit\_funding\_token</code>, <code>tags</code>, <code>token</code>, <code>user\_token</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| jit\_funding.**acting\_user\_token**<br /><br />string<br /><br />Conditionally returned                                                                               | User who conducted the transaction.<br /><br />Can be a child user configured to share its parent’s account balance.<br /><br />**Allowable Values:**<br /><br />36 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| jit\_funding.**address\_verification**<br /><br />object<br /><br />Conditionally returned                                                                             | Contains address verification data used to make JIT Funding decisions.<br /><br />**Allowable Values:**<br /><br /><code>gateway</code>, <code>issuer</code>, <code>request</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| jit\_funding.address\_verification.**gateway**<br /><br />object<br /><br />Conditionally returned                                                                     | Contains address verification data consisting of address data entered by the cardholder, address data held by the Marqeta platform, and an assertion by the Marqeta platform as to whether the two sets of data match.<br /><br />**Allowable Values:**<br /><br /><code>on\_file</code>, <code>response</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| jit\_funding.address\_verification.gateway.**on\_file**<br /><br />object<br /><br />Conditionally returned                                                            | Contains address verification information.<br /><br />**Allowable Values:**<br /><br /><code>postal\_code</code>, <code>street\_address</code>, <code>zip</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| jit\_funding.address\_verification.gateway.on\_file.**postal\_code**<br /><br />string<br /><br />Conditionally returned                                               | Postal code of the address.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| jit\_funding.address\_verification.gateway.on\_file.**street\_address**<br /><br />string<br /><br />Conditionally returned                                            | Street name and number of the address.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| jit\_funding.address\_verification.gateway.on\_file.**zip**<br /><br />string<br /><br />Conditionally returned                                                        | United States ZIP code of the address.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| jit\_funding.address\_verification.gateway.**response**<br /><br />object<br /><br />Conditionally returned                                                            | Response codes and memos for account name verification, address verification, card security verification, and transactions.<br /><br />**Allowable Values:**<br /><br /><code>additional\_information</code>, <code>code</code>, <code>memo</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| jit\_funding.address\_verification.gateway.response.**additional\_information**<br /><br />string<br /><br />Conditionally returned                                    | Additional information about the transaction, such as velocity control details.<br /><br />This field is returned in transaction response objects only. It is not returned in address verification or card security verification response objects.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| jit\_funding.address\_verification.gateway.response.**code**<br /><br />string<br /><br />Returned                                                                     | Four-digit response code for address verification, card security code verification, or transactions.<br /><br />For account name verification, the four digits correspond with assertions that the first, middle, last, and full name of the cardholder on the Marqeta platform match the data provided by the cardholder.<br /><br />- <code>0</code> indicates no validation was performed<br />- <code>1</code> indicates the match was unsuccessful (not matched)<br />- <code>2</code> indicates the match was partial<br />- <code>3</code> indicates the match was exact<br /><br />For example:<br /><br />Code / First Name / Middle Name / Last Name / Full Name<br /><code>0000</code> / Not validated / Not validated / Not validated / Not validated<br /><code>1111</code> / Not matched / Not matched / Not matched / Not matched<br /><code>3333</code> / Exact match / Exact match / Exact match / Exact match<br /><code>1232</code> / Not matched / Partial match / Exact match / Partial match<br /><br />For address verification responses, the code is an assertion by the Marqeta platform as to whether its address verification data matches that provided by the cardholder:<br /><br />Code / Address / Postal Code<br /><code>0000</code> / Match / Match<br /><code>0001</code> / Match / Not matched<br /><code>0100</code> / Not matched / Match<br /><code>0101</code> / Not matched / Not matched<br /><code>0200</code> / Data not present / Match<br /><code>0201</code> / Data not present / Not matched<br /><code>0002</code> / Match / Data not present<br /><code>0102</code> / Not matched / Data not present<br /><code>0303</code> / Not validated / Not validated<br /><br />For card security verification, the code indicates whether the verification check passed and can have these possible values:<br /><br />- <code>0000</code> – Passed<br />- <code>0001</code> – Did not pass<br /><br />For a transaction, the code describes the outcome of the attempted transaction. For the full list of transaction codes, see <a href="/developer-guides/about-transactions/#_transaction_response_codes">Transaction response codes</a>.<br /><br />**Allowable Values:**<br /><br />Four-digit code |
| jit\_funding.address\_verification.gateway.response.**memo**<br /><br />string<br /><br />Returned                                                                     | Additional text that describes the response.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| jit\_funding.address\_verification.**issuer**<br /><br />object<br /><br />Conditionally returned                                                                      | Contains address verification data consisting of address data entered by the cardholder, address data held by the Marqeta platform, and an assertion by the Marqeta platform as to whether the two sets of data match.<br /><br />**Allowable Values:**<br /><br /><code>on\_file</code>, <code>response</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| jit\_funding.address\_verification.issuer.**on\_file**<br /><br />object<br /><br />Conditionally returned                                                             | Contains address verification information.<br /><br />**Allowable Values:**<br /><br /><code>postal\_code</code>, <code>street\_address</code>, <code>zip</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| jit\_funding.address\_verification.issuer.on\_file.**postal\_code**<br /><br />string<br /><br />Conditionally returned                                                | Postal code of the address.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| jit\_funding.address\_verification.issuer.on\_file.**street\_address**<br /><br />string<br /><br />Conditionally returned                                             | Street name and number of the address.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| jit\_funding.address\_verification.issuer.on\_file.**zip**<br /><br />string<br /><br />Conditionally returned                                                         | United States ZIP code of the address.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| jit\_funding.address\_verification.issuer.**response**<br /><br />object<br /><br />Conditionally returned                                                             | Response codes and memos for account name verification, address verification, card security verification, and transactions.<br /><br />**Allowable Values:**<br /><br /><code>additional\_information</code>, <code>code</code>, <code>memo</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| jit\_funding.address\_verification.issuer.response.**additional\_information**<br /><br />string<br /><br />Conditionally returned                                     | Additional information about the transaction, such as velocity control details.<br /><br />This field is returned in transaction response objects only. It is not returned in address verification or card security verification response objects.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| jit\_funding.address\_verification.issuer.response.**code**<br /><br />string<br /><br />Returned                                                                      | Four-digit response code for address verification, card security code verification, or transactions.<br /><br />For account name verification, the four digits correspond with assertions that the first, middle, last, and full name of the cardholder on the Marqeta platform match the data provided by the cardholder.<br /><br />- <code>0</code> indicates no validation was performed<br />- <code>1</code> indicates the match was unsuccessful (not matched)<br />- <code>2</code> indicates the match was partial<br />- <code>3</code> indicates the match was exact<br /><br />For example:<br /><br />Code / First Name / Middle Name / Last Name / Full Name<br /><code>0000</code> / Not validated / Not validated / Not validated / Not validated<br /><code>1111</code> / Not matched / Not matched / Not matched / Not matched<br /><code>3333</code> / Exact match / Exact match / Exact match / Exact match<br /><code>1232</code> / Not matched / Partial match / Exact match / Partial match<br /><br />For address verification responses, the code is an assertion by the Marqeta platform as to whether its address verification data matches that provided by the cardholder:<br /><br />Code / Address / Postal Code<br /><code>0000</code> / Match / Match<br /><code>0001</code> / Match / Not matched<br /><code>0100</code> / Not matched / Match<br /><code>0101</code> / Not matched / Not matched<br /><code>0200</code> / Data not present / Match<br /><code>0201</code> / Data not present / Not matched<br /><code>0002</code> / Match / Data not present<br /><code>0102</code> / Not matched / Data not present<br /><code>0303</code> / Not validated / Not validated<br /><br />For card security verification, the code indicates whether the verification check passed and can have these possible values:<br /><br />- <code>0000</code> – Passed<br />- <code>0001</code> – Did not pass<br /><br />For a transaction, the code describes the outcome of the attempted transaction. For the full list of transaction codes, see <a href="/developer-guides/about-transactions/#_transaction_response_codes">Transaction response codes</a>.<br /><br />**Allowable Values:**<br /><br />Four-digit code |
| jit\_funding.address\_verification.issuer.response.**memo**<br /><br />string<br /><br />Returned                                                                      | Additional text that describes the response.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| jit\_funding.address\_verification.**request**<br /><br />object<br /><br />Conditionally returned                                                                     | Contains address verification information.<br /><br />**Allowable Values:**<br /><br /><code>postal\_code</code>, <code>street\_address</code>, <code>zip</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| jit\_funding.address\_verification.request.**postal\_code**<br /><br />string<br /><br />Conditionally returned                                                        | Postal code of the address.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| jit\_funding.address\_verification.request.**street\_address**<br /><br />string<br /><br />Conditionally returned                                                     | Street name and number of the address.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| jit\_funding.address\_verification.request.**zip**<br /><br />string<br /><br />Conditionally returned                                                                 | United States ZIP code of the address.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| jit\_funding.**jit\_account\_name\_verification**<br /><br />object<br /><br />Conditionally returned                                                                  | Contains account name verification data used to make JIT Funding decisions from one of the following objects:<br /><br />- The <code>gateway</code> object, which contains account name verification data from your JIT Funding gateway.<br />- The <code>issuer</code> object, which contains account name verification data from the Marqeta platform.<br />- The <code>request</code> object, which contains account name verification data as it appears in a JIT Funding request.<br /><br />**Allowable Values:**<br /><br /><code>gateway</code>, <code>issuer</code>, <code>request</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| jit\_funding.jit\_account\_name\_verification.**gateway**<br /><br />object<br /><br />Conditionally returned                                                          | Contains account name verification data used to make JIT Funding decisions.<br /><br />**Allowable Values:**<br /><br /><code>first\_name</code>, <code>last\_name</code>, <code>middle\_name</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| jit\_funding.jit\_account\_name\_verification.**issuer**<br /><br />object<br /><br />Conditionally returned                                                           | Contains account name verification data used to make JIT Funding decisions.<br /><br />**Allowable Values:**<br /><br /><code>first\_name</code>, <code>last\_name</code>, <code>middle\_name</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| jit\_funding.jit\_account\_name\_verification.**request**<br /><br />object<br /><br />Conditionally returned                                                          | Contains account name verification data used to make JIT Funding decisions.<br /><br />**Allowable Values:**<br /><br /><code>first\_name</code>, <code>last\_name</code>, <code>middle\_name</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| jit\_funding.**amount**<br /><br />decimal<br /><br />Returned                                                                                                         | Requested amount of funding.<br /><br />**Allowable Values:**<br /><br />0 min<br /><br />**Format:**<br />0.00                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| jit\_funding.**balances**<br /><br />object<br /><br />Conditionally returned                                                                                          | Contains the GPA’s balance details.<br /><br />**Allowable Values:**<br /><br /><code>available\_balance</code>, <code>balances</code>, <code>cached\_balance</code>, <code>credit\_balance</code>, <code>currency\_code</code>, <code>impacted\_amount</code>, <code>last\_updated\_time</code>, <code>ledger\_balance</code>, <code>pending\_credits</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| jit\_funding.**business\_token**<br /><br />string<br /><br />Conditionally returned                                                                                   | Holder of the business account that was funded.<br /><br />**Allowable Values:**<br /><br />36 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| jit\_funding.**decline\_reason**<br /><br />string<br /><br />Conditionally returned                                                                                   | Reason why the transaction was declined.<br /><br />**Allowable Values:**<br /><br /><code>AMOUNT\_LIMIT\_EXCEEDED</code>, <code>BLOCKED\_BY\_CARDHOLDER</code>, <code>BLOCKED\_BY\_ISSUER</code>, <code>BLOCKED\_MERCHANT\_BY\_CARDHOLDER</code>, <code>CARD\_NOT\_ACTIVE</code>, <code>CARDHOLDER\_NOT\_ACTIVE</code>, <code>CLOSED\_ACCOUNT</code>, <code>DUPLICATE\_TRANSACTION</code>, <code>EXPIRED\_CARD</code>, <code>INSUFFICIENT\_FUNDS</code>, <code>INVALID\_AMOUNT</code>, <code>INVALID\_CARD</code>, <code>INVALID\_MERCHANT</code>, <code>NO\_CHECKING\_ACCOUNT</code>, <code>NO\_CREDIT\_ACCOUNT</code>, <code>NO\_SAVINGS\_ACCOUNT</code>, <code>REVOCATION\_ALL\_AUTHORIZATION\_ORDER</code>, <code>REVOCATION\_AUTHORIZATION\_ORDER</code>, <code>SOFT\_DECLINE\_AUTHENTICATION\_REQUIRED</code>, <code>SOFT\_DECLINE\_PIN\_REQUIRED</code>, <code>STOP\_PAYMENT</code>, <code>SUSPECTED\_FRAUD</code>, <code>TRANSACTION\_COUNT\_LIMIT\_EXCEEDED</code>, <code>TRANSACTION\_NOT\_PERMITTED</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| jit\_funding.**incremental\_authorization\_jit\_funding\_tokens**<br /><br />array of strings<br /><br />Conditionally returned                                        | Array of tokens referencing the JIT Funding tokens of all previous associated incremental authorization JIT Funding requests. Useful for ascertaining the final transaction amount when the original amount was incremented.<br /><br />**Allowable Values:**<br /><br />Existing incremental authorization JIT Funding tokens                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| jit\_funding.**memo**<br /><br />string<br /><br />Conditionally returned                                                                                              | Additional information that describes the JIT Funding transaction.<br /><br />**Allowable Values:**<br /><br />99 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| jit\_funding.**method**<br /><br />string<br /><br />Returned                                                                                                          | JIT Funding response type. See <a href="/core-api/gateway-jit-funding-messages/#_the_jit_funding_object">The jit\_funding object</a> for the purpose, funding event type, and description of each method.<br /><br />**Allowable Values:**<br /><br /><code>pgfs.adjustment.credit</code>, <code>pgfs.adjustment.debit</code>, <code>pgfs.authorization</code>, <code>pgfs.authorization.account\_verification</code>, <code>pgfs.authorization.capture</code>, <code>pgfs.authorization.capture.chargeback</code>, <code>pgfs.authorization.capture.chargeback.reversal</code>, <code>pgfs.authorization.incremental</code>, <code>pgfs.authorization.reversal</code>, <code>pgfs.authorization.standin</code>, <code>pgfs.auth\_plus\_capture</code>, <code>pgfs.auth\_plus\_capture.standin</code>, <code>pgfs.balanceinquiry</code>, <code>pgfs.billpayment</code>, <code>pgfs.billpayment.capture</code>, <code>pgfs.billpayment.reversal</code>, <code>pgfs.directdeposit.credit</code>, <code>pgfs.directdeposit.credit.reversal</code>, <code>pgfs.directdeposit.debit</code>, <code>pgfs.directdeposit.debit.reversal</code>, <code>pgfs.dispute.credit</code>, <code>pgfs.dispute.debit</code>, <code>pgfs.force\_capture</code>, <code>pgfs.network.load</code>, <code>pgfs.original.credit.authorization</code>, <code>pgfs.original.credit.auth\_plus\_capture</code>, <code>pgfs.pindebit.chargeback</code>, <code>pgfs.pindebit.chargeback.reversal</code>, <code>pgfs.product.inquiry</code>, <code>pgfs.refund</code>, <code>pgfs.refund.authorization</code>, <code>pgfs.refund.authorization.reversal</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| jit\_funding.**original\_jit\_funding\_token**<br /><br />string<br /><br />Conditionally returned                                                                     | Unique identifier of the first associated JIT Funding message. Useful for correlating related JIT Funding messages (that is, those associated with the same GPA order). Not included in the first of any set of related messages.<br /><br />**Allowable Values:**<br /><br />36 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| jit\_funding.**tags**<br /><br />string<br /><br />Conditionally returned                                                                                              | Customer-defined tags related to the JIT Funding transaction.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| jit\_funding.**token**<br /><br />string<br /><br />Returned                                                                                                           | Existing JIT Funding token matching the <code>funding.gateway\_log.transaction\_id</code> field of the associated GPA order.<br /><br />**NOTE:** The <code>transaction\_id</code> field updates if a subsequent JIT Funding message associated with that GPA order is sent. If multiple JIT Funding messages are associated with the same GPA order, the <code>transaction\_id</code> field matches the token of the most recent message.<br /><br />**Allowable Values:**<br /><br />36 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| jit\_funding.**user\_token**<br /><br />string<br /><br />Returned                                                                                                     | Holder of the user account that was funded.<br /><br />**Allowable Values:**<br /><br />36 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| last\_modified\_time<br /><br />datetime<br /><br />Returned                                                                                                           | Date and time when the GPA order was last modified, in UTC.<br /><br />**Allowable Values:**<br /><br />datetime<br /><br />**Format:**<br />yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| memo<br /><br />string<br /><br />Conditionally returned                                                                                                               | Additional descriptive text.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />99 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| response<br /><br />object<br /><br />Returned                                                                                                                         | Response codes and memos for account name verification, address verification, card security verification, and transactions.<br /><br />**Allowable Values:**<br /><br /><code>additional\_information</code>, <code>code</code>, <code>memo</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| response.**additional\_information**<br /><br />string<br /><br />Conditionally returned                                                                               | Additional information about the transaction, such as velocity control details.<br /><br />This field is returned in transaction response objects only. It is not returned in address verification or card security verification response objects.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| response.**code**<br /><br />string<br /><br />Returned                                                                                                                | Four-digit response code for address verification, card security code verification, or transactions.<br /><br />For account name verification, the four digits correspond with assertions that the first, middle, last, and full name of the cardholder on the Marqeta platform match the data provided by the cardholder.<br /><br />- <code>0</code> indicates no validation was performed<br />- <code>1</code> indicates the match was unsuccessful (not matched)<br />- <code>2</code> indicates the match was partial<br />- <code>3</code> indicates the match was exact<br /><br />For example:<br /><br />Code / First Name / Middle Name / Last Name / Full Name<br /><code>0000</code> / Not validated / Not validated / Not validated / Not validated<br /><code>1111</code> / Not matched / Not matched / Not matched / Not matched<br /><code>3333</code> / Exact match / Exact match / Exact match / Exact match<br /><code>1232</code> / Not matched / Partial match / Exact match / Partial match<br /><br />For address verification responses, the code is an assertion by the Marqeta platform as to whether its address verification data matches that provided by the cardholder:<br /><br />Code / Address / Postal Code<br /><code>0000</code> / Match / Match<br /><code>0001</code> / Match / Not matched<br /><code>0100</code> / Not matched / Match<br /><code>0101</code> / Not matched / Not matched<br /><code>0200</code> / Data not present / Match<br /><code>0201</code> / Data not present / Not matched<br /><code>0002</code> / Match / Data not present<br /><code>0102</code> / Not matched / Data not present<br /><code>0303</code> / Not validated / Not validated<br /><br />For card security verification, the code indicates whether the verification check passed and can have these possible values:<br /><br />- <code>0000</code> – Passed<br />- <code>0001</code> – Did not pass<br /><br />For a transaction, the code describes the outcome of the attempted transaction. For the full list of transaction codes, see <a href="/developer-guides/about-transactions/#_transaction_response_codes">Transaction response codes</a>.<br /><br />**Allowable Values:**<br /><br />Four-digit code |
| response.**memo**<br /><br />string<br /><br />Returned                                                                                                                | Additional text that describes the response.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| state<br /><br />string<br /><br />Returned                                                                                                                            | Current status of the funding transaction.<br /><br />**Allowable Values:**<br /><br /><code>PENDING</code>, <code>CLEARED</code>, <code>COMPLETION</code>, <code>DECLINED</code>, <code>ERROR</code>, <code>REVERSED</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| tags<br /><br />string<br /><br />Conditionally returned                                                                                                               | Comma-delimited list of tags describing the GPA order.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| token<br /><br />string<br /><br />Returned                                                                                                                            | Unique identifier of the GPA order.<br /><br />**Allowable Values:**<br /><br />36 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| transaction\_token<br /><br />string<br /><br />Returned                                                                                                               | Unique identifier of the transaction being funded.<br /><br />**Allowable Values:**<br /><br />Format: UUID                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| user\_token<br /><br />string<br /><br />Conditionally returned                                                                                                        | Unique identifier of the user resource.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />Existing user resource token                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |

<h3 id="_sample_response_body">
  Sample response body
</h3>

```json JSON expandable lines wrap theme={null}
{
  "token": "my_gpaorder_01",
  "amount": 1000,
  "created_time": "2025-05-10T23:00:15Z",
  "last_modified_time": "2025-05-10T23:00:15Z",
  "transaction_token": 156,
  "state": "COMPLETION",
  "response": {
    "code": "0000",
    "memo": "Approved or completed successfully"
  },
  "funding": {
    "amount": 1000,
    "source": {
      "type": "program",
      "token": "**********e_01",
      "active": true,
      "name": "my_program_funding_source_01",
      "is_default_account": false,
      "created_time": "2024-11-30T19:13:23Z",
      "last_modified_time": "2024-11-30T19:13:23Z"
    }
  },
  "funding_source_token": "**********e_01",
  "user_token": "my_user_01",
  "source_load_type": "ach",
  "currency_code": "USD"
}
```

<h2 id="get_gpaorders_token">
  Retrieve GPA order
</h2>

**Action:** `GET`\
**Endpoint:** `/gpaorders/{token}`

{/* <EndpointCard
title="Retrieve GPA order"
path="/gpaorders/{token}"
method="get"
/> */}

Use this endpoint to retrieve a GPA order.

<h3 id="_url_path_parameters">
  URL path parameters
</h3>

| Fields                                      | Description                                                                                                                                                                                                                     |
| ------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| token<br /><br />string<br /><br />Required | Unique identifier of the GPA order.<br /><br />Send a <code>GET</code> request to <code>/transactions?type=gpa.credit</code> to retrieve GPA order tokens.<br /><br />**Allowable Values:**<br /><br />Existing GPA order token |

<h3 id="_response_body_2">
  Response body
</h3>

| Fields                                                                                                                                                                 | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| amount<br /><br />decimal<br /><br />Returned                                                                                                                          | Amount funded.<br /><br />**Allowable Values:**<br /><br />decimal<br /><br />**Format:**<br />0.00                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| business\_token<br /><br />string<br /><br />Conditionally returned                                                                                                    | Unique identifier of the business.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />Existing <code>business\_token</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| created\_time<br /><br />datetime<br /><br />Returned                                                                                                                  | Date and time when the GPA order was created, in UTC.<br /><br />**Allowable Values:**<br /><br />datetime<br /><br />**Format:**<br />yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| currency\_code<br /><br />string<br /><br />Returned                                                                                                                   | Three-digit ISO 4217 currency code.<br /><br />**Allowable Values:**<br /><br />Valid three-digit <a href="https://www.iso.org/iso-4217-currency-codes.html" target="_blank" rel="noopener">ISO 4217 currency code</a>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| fees<br /><br />array of objects<br /><br />Conditionally returned                                                                                                     | List of fees associated with the funding transaction.<br /><br />This array is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />Valid array of one or more <code>fees</code> objects                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| fees\[].**fee**<br /><br />object<br /><br />Returned                                                                                                                  | Contains details about the fee.<br /><br />**Allowable Values:**<br /><br /><code>amount</code>, <code>created\_time</code>, <code>currency\_code</code>, <code>last\_modified\_time</code>, <code>name</code>, <code>tags</code>, <code>token</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| fees\[].fee.**amount**<br /><br />decimal<br /><br />Returned                                                                                                          | Amount of the fee.<br /><br />**Allowable Values:**<br /><br />decimal<br /><br />**Format:**<br />0.00                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| fees\[].fee.**created\_time**<br /><br />datetime<br /><br />Returned                                                                                                  | Date and time when the <code>fees</code> object was created, in UTC.<br /><br />**Allowable Values:**<br /><br />datetime<br /><br />**Format:**<br />yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| fees\[].fee.**currency\_code**<br /><br />string<br /><br />Returned                                                                                                   | Three-digit ISO 4217 currency code.<br /><br />**Allowable Values:**<br /><br />Valid three-digit <a href="https://www.iso.org/iso-4217-currency-codes.html" target="_blank" rel="noopener">ISO 4217 currency code</a>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| fees\[].fee.**last\_modified\_time**<br /><br />datetime<br /><br />Returned                                                                                           | Date and time when the <code>fees</code> object was last modified, in UTC.<br /><br />**Allowable Values:**<br /><br />datetime<br /><br />**Format:**<br />yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| fees\[].fee.**name**<br /><br />string<br /><br />Returned                                                                                                             | Name of the fee.<br /><br />**Allowable Values:**<br /><br />50 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| fees\[].fee.**tags**<br /><br />string<br /><br />Conditionally returned                                                                                               | Descriptive metadata about the fee.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| fees\[].fee.**token**<br /><br />string<br /><br />Returned                                                                                                            | Unique identifier of the <code>fees</code> object.<br /><br />**Allowable Values:**<br /><br />Existing <code>fees</code> object token                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| fees\[].**memo**<br /><br />string<br /><br />Conditionally returned                                                                                                   | Additional text describing the fee.<br /><br />**Allowable Values:**<br /><br />1–255 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| fees\[].**overrideAmount**<br /><br />decimal<br /><br />Conditionally returned                                                                                        | Dynamic fee amount that overrides the <code>fee.amount</code> field value.<br /><br />**Allowable Values:**<br /><br />decimal<br /><br />**Format:**<br />0.00                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| fees\[].**tags**<br /><br />string<br /><br />Conditionally returned                                                                                                   | Descriptive metadata about the fee.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| fees\[].**token**<br /><br />string<br /><br />Returned                                                                                                                | Unique identifier of the fee.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| fees\[].**transaction\_token**<br /><br />string<br /><br />Returned                                                                                                   | Unique identifier of the fee transaction.<br /><br />**Allowable Values:**<br /><br />36 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| funding<br /><br />object<br /><br />Returned                                                                                                                          | Contains funding information for the transaction, including funding amount, type, and time.<br /><br />**Allowable Values:**<br /><br /><code>amount</code>, <code>gateway\_log</code>, <code>source</code>, <code>source\_address</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| funding.**amount**<br /><br />decimal<br /><br />Conditionally returned                                                                                                | Amount of funds loaded into the GPA.<br /><br />**Allowable Values:**<br /><br />decimal<br /><br />**Format:**<br />0.00                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| funding.**gateway\_log**<br /><br />object<br /><br />Conditionally returned                                                                                           | Contains information from the JIT Funding gateway in response to a funding request.<br /><br />**Allowable Values:**<br /><br /><code>duration</code>, <code>message</code>, <code>order\_number</code>, <code>response</code>, <code>timed\_out</code>, <code>transaction\_id</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| funding.gateway\_log.**duration**<br /><br />integer<br /><br />Conditionally returned                                                                                 | Length of time in milliseconds that the gateway took to respond to a funding request.<br /><br />**Allowable Values:**<br /><br />Any integer                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| funding.gateway\_log.**message**<br /><br />string<br /><br />Returned                                                                                                 | Message about the status of the funding request. Useful for determining whether it was approved and completed successfully, declined by the gateway, or timed out.<br /><br />**Allowable Values:**<br /><br /><code>Approved or completed successfully</code>, <code>Declined by gateway</code>, <code>Operation timeout</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| funding.gateway\_log.**order\_number**<br /><br />string<br /><br />Returned                                                                                           | Customer order number, same value as <code>transaction.token</code>.<br /><br />**Allowable Values:**<br /><br />Existing <code>transaction.token</code> value                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| funding.gateway\_log.**response**<br /><br />object<br /><br />Conditionally returned                                                                                  | Contains information from the gateway in response to a funding request.<br /><br />**Allowable Values:**<br /><br /><code>code</code>, <code>data</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| funding.gateway\_log.response.**code**<br /><br />string<br /><br />Returned                                                                                           | Code received from the gateway.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| funding.gateway\_log.response.**data**<br /><br />object<br /><br />Conditionally returned                                                                             | Contains the gateway’s information about the JIT Funding transaction.<br /><br />**Allowable Values:**<br /><br /><code>jit\_funding</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| funding.gateway\_log.response.data.**jit\_funding**<br /><br />object<br /><br />Returned                                                                              | Contains information about the JIT Funding load event, in which funds are loaded into an account.<br /><br />This object is returned if your program uses JIT Funding.<br /><br />**Allowable Values:**<br /><br /><code>acting\_user\_token</code>, <code>address\_verification</code>, <code>amount</code>, <code>balances</code>, <code>business\_token</code>, <code>decline\_reason</code>, <code>incremental\_authorization\_jit\_funding\_tokens</code>, <code>memo</code>, <code>method</code>, <code>original\_jit\_funding\_token</code>, <code>tags</code>, <code>token</code>, <code>user\_token</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| funding.gateway\_log.response.data.jit\_funding.**acting\_user\_token**<br /><br />string<br /><br />Conditionally returned                                            | User who conducted the transaction.<br /><br />Can be a child user configured to share its parent’s account balance.<br /><br />**Allowable Values:**<br /><br />36 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| funding.gateway\_log.response.data.jit\_funding.**address\_verification**<br /><br />object<br /><br />Conditionally returned                                          | Contains address verification data used to make JIT Funding decisions.<br /><br />**Allowable Values:**<br /><br /><code>gateway</code>, <code>issuer</code>, <code>request</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.**gateway**<br /><br />object<br /><br />Conditionally returned                                  | Contains address verification data consisting of address data entered by the cardholder, address data held by the Marqeta platform, and an assertion by the Marqeta platform as to whether the two sets of data match.<br /><br />**Allowable Values:**<br /><br /><code>on\_file</code>, <code>response</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.gateway.**on\_file**<br /><br />object<br /><br />Conditionally returned                         | Contains address verification information.<br /><br />**Allowable Values:**<br /><br /><code>postal\_code</code>, <code>street\_address</code>, <code>zip</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.gateway.on\_file.**postal\_code**<br /><br />string<br /><br />Conditionally returned            | Postal code of the address.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.gateway.on\_file.**street\_address**<br /><br />string<br /><br />Conditionally returned         | Street name and number of the address.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.gateway.on\_file.**zip**<br /><br />string<br /><br />Conditionally returned                     | United States ZIP code of the address.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.gateway.**response**<br /><br />object<br /><br />Conditionally returned                         | Response codes and memos for account name verification, address verification, card security verification, and transactions.<br /><br />**Allowable Values:**<br /><br /><code>additional\_information</code>, <code>code</code>, <code>memo</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.gateway.response.**additional\_information**<br /><br />string<br /><br />Conditionally returned | Additional information about the transaction, such as velocity control details.<br /><br />This field is returned in transaction response objects only. It is not returned in address verification or card security verification response objects.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.gateway.response.**code**<br /><br />string<br /><br />Returned                                  | Four-digit response code for address verification, card security code verification, or transactions.<br /><br />For account name verification, the four digits correspond with assertions that the first, middle, last, and full name of the cardholder on the Marqeta platform match the data provided by the cardholder.<br /><br />- <code>0</code> indicates no validation was performed<br />- <code>1</code> indicates the match was unsuccessful (not matched)<br />- <code>2</code> indicates the match was partial<br />- <code>3</code> indicates the match was exact<br /><br />For example:<br /><br />Code / First Name / Middle Name / Last Name / Full Name<br /><code>0000</code> / Not validated / Not validated / Not validated / Not validated<br /><code>1111</code> / Not matched / Not matched / Not matched / Not matched<br /><code>3333</code> / Exact match / Exact match / Exact match / Exact match<br /><code>1232</code> / Not matched / Partial match / Exact match / Partial match<br /><br />For address verification responses, the code is an assertion by the Marqeta platform as to whether its address verification data matches that provided by the cardholder:<br /><br />Code / Address / Postal Code<br /><code>0000</code> / Match / Match<br /><code>0001</code> / Match / Not matched<br /><code>0100</code> / Not matched / Match<br /><code>0101</code> / Not matched / Not matched<br /><code>0200</code> / Data not present / Match<br /><code>0201</code> / Data not present / Not matched<br /><code>0002</code> / Match / Data not present<br /><code>0102</code> / Not matched / Data not present<br /><code>0303</code> / Not validated / Not validated<br /><br />For card security verification, the code indicates whether the verification check passed and can have these possible values:<br /><br />- <code>0000</code> – Passed<br />- <code>0001</code> – Did not pass<br /><br />For a transaction, the code describes the outcome of the attempted transaction. For the full list of transaction codes, see <a href="/developer-guides/about-transactions/#_transaction_response_codes">Transaction response codes</a>.<br /><br />**Allowable Values:**<br /><br />Four-digit code |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.gateway.response.**memo**<br /><br />string<br /><br />Returned                                  | Additional text that describes the response.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.**issuer**<br /><br />object<br /><br />Conditionally returned                                   | Contains address verification data consisting of address data entered by the cardholder, address data held by the Marqeta platform, and an assertion by the Marqeta platform as to whether the two sets of data match.<br /><br />**Allowable Values:**<br /><br /><code>on\_file</code>, <code>response</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.issuer.**on\_file**<br /><br />object<br /><br />Conditionally returned                          | Contains address verification information.<br /><br />**Allowable Values:**<br /><br /><code>postal\_code</code>, <code>street\_address</code>, <code>zip</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.issuer.on\_file.**postal\_code**<br /><br />string<br /><br />Conditionally returned             | Postal code of the address.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.issuer.on\_file.**street\_address**<br /><br />string<br /><br />Conditionally returned          | Street name and number of the address.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.issuer.on\_file.**zip**<br /><br />string<br /><br />Conditionally returned                      | United States ZIP code of the address.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.issuer.**response**<br /><br />object<br /><br />Conditionally returned                          | Response codes and memos for account name verification, address verification, card security verification, and transactions.<br /><br />**Allowable Values:**<br /><br /><code>additional\_information</code>, <code>code</code>, <code>memo</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.issuer.response.**additional\_information**<br /><br />string<br /><br />Conditionally returned  | Additional information about the transaction, such as velocity control details.<br /><br />This field is returned in transaction response objects only. It is not returned in address verification or card security verification response objects.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.issuer.response.**code**<br /><br />string<br /><br />Returned                                   | Four-digit response code for address verification, card security code verification, or transactions.<br /><br />For account name verification, the four digits correspond with assertions that the first, middle, last, and full name of the cardholder on the Marqeta platform match the data provided by the cardholder.<br /><br />- <code>0</code> indicates no validation was performed<br />- <code>1</code> indicates the match was unsuccessful (not matched)<br />- <code>2</code> indicates the match was partial<br />- <code>3</code> indicates the match was exact<br /><br />For example:<br /><br />Code / First Name / Middle Name / Last Name / Full Name<br /><code>0000</code> / Not validated / Not validated / Not validated / Not validated<br /><code>1111</code> / Not matched / Not matched / Not matched / Not matched<br /><code>3333</code> / Exact match / Exact match / Exact match / Exact match<br /><code>1232</code> / Not matched / Partial match / Exact match / Partial match<br /><br />For address verification responses, the code is an assertion by the Marqeta platform as to whether its address verification data matches that provided by the cardholder:<br /><br />Code / Address / Postal Code<br /><code>0000</code> / Match / Match<br /><code>0001</code> / Match / Not matched<br /><code>0100</code> / Not matched / Match<br /><code>0101</code> / Not matched / Not matched<br /><code>0200</code> / Data not present / Match<br /><code>0201</code> / Data not present / Not matched<br /><code>0002</code> / Match / Data not present<br /><code>0102</code> / Not matched / Data not present<br /><code>0303</code> / Not validated / Not validated<br /><br />For card security verification, the code indicates whether the verification check passed and can have these possible values:<br /><br />- <code>0000</code> – Passed<br />- <code>0001</code> – Did not pass<br /><br />For a transaction, the code describes the outcome of the attempted transaction. For the full list of transaction codes, see <a href="/developer-guides/about-transactions/#_transaction_response_codes">Transaction response codes</a>.<br /><br />**Allowable Values:**<br /><br />Four-digit code |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.issuer.response.**memo**<br /><br />string<br /><br />Returned                                   | Additional text that describes the response.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.**request**<br /><br />object<br /><br />Conditionally returned                                  | Contains address verification information.<br /><br />**Allowable Values:**<br /><br /><code>postal\_code</code>, <code>street\_address</code>, <code>zip</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.request.**postal\_code**<br /><br />string<br /><br />Conditionally returned                     | Postal code of the address.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.request.**street\_address**<br /><br />string<br /><br />Conditionally returned                  | Street name and number of the address.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.request.**zip**<br /><br />string<br /><br />Conditionally returned                              | United States ZIP code of the address.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| funding.gateway\_log.response.data.jit\_funding.**jit\_account\_name\_verification**<br /><br />object<br /><br />Conditionally returned                               | Contains account name verification data used to make JIT Funding decisions from one of the following objects:<br /><br />- The <code>gateway</code> object, which contains account name verification data from your JIT Funding gateway.<br />- The <code>issuer</code> object, which contains account name verification data from the Marqeta platform.<br />- The <code>request</code> object, which contains account name verification data as it appears in a JIT Funding request.<br /><br />**Allowable Values:**<br /><br /><code>gateway</code>, <code>issuer</code>, <code>request</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| funding.gateway\_log.response.data.jit\_funding.jit\_account\_name\_verification.**gateway**<br /><br />object<br /><br />Conditionally returned                       | Contains account name verification data used to make JIT Funding decisions.<br /><br />**Allowable Values:**<br /><br /><code>first\_name</code>, <code>last\_name</code>, <code>middle\_name</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| funding.gateway\_log.response.data.jit\_funding.jit\_account\_name\_verification.**issuer**<br /><br />object<br /><br />Conditionally returned                        | Contains account name verification data used to make JIT Funding decisions.<br /><br />**Allowable Values:**<br /><br /><code>first\_name</code>, <code>last\_name</code>, <code>middle\_name</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| funding.gateway\_log.response.data.jit\_funding.jit\_account\_name\_verification.**request**<br /><br />object<br /><br />Conditionally returned                       | Contains account name verification data used to make JIT Funding decisions.<br /><br />**Allowable Values:**<br /><br /><code>first\_name</code>, <code>last\_name</code>, <code>middle\_name</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| funding.gateway\_log.response.data.jit\_funding.**amount**<br /><br />decimal<br /><br />Returned                                                                      | Requested amount of funding.<br /><br />**Allowable Values:**<br /><br />0 min<br /><br />**Format:**<br />0.00                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| funding.gateway\_log.response.data.jit\_funding.**balances**<br /><br />object<br /><br />Conditionally returned                                                       | Contains the GPA’s balance details.<br /><br />**Allowable Values:**<br /><br /><code>available\_balance</code>, <code>balances</code>, <code>cached\_balance</code>, <code>credit\_balance</code>, <code>currency\_code</code>, <code>impacted\_amount</code>, <code>last\_updated\_time</code>, <code>ledger\_balance</code>, <code>pending\_credits</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| funding.gateway\_log.response.data.jit\_funding.**business\_token**<br /><br />string<br /><br />Conditionally returned                                                | Holder of the business account that was funded.<br /><br />**Allowable Values:**<br /><br />36 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| funding.gateway\_log.response.data.jit\_funding.**decline\_reason**<br /><br />string<br /><br />Conditionally returned                                                | Reason why the transaction was declined.<br /><br />**Allowable Values:**<br /><br /><code>AMOUNT\_LIMIT\_EXCEEDED</code>, <code>BLOCKED\_BY\_CARDHOLDER</code>, <code>BLOCKED\_BY\_ISSUER</code>, <code>BLOCKED\_MERCHANT\_BY\_CARDHOLDER</code>, <code>CARD\_NOT\_ACTIVE</code>, <code>CARDHOLDER\_NOT\_ACTIVE</code>, <code>CLOSED\_ACCOUNT</code>, <code>DUPLICATE\_TRANSACTION</code>, <code>EXPIRED\_CARD</code>, <code>INSUFFICIENT\_FUNDS</code>, <code>INVALID\_AMOUNT</code>, <code>INVALID\_CARD</code>, <code>INVALID\_MERCHANT</code>, <code>NO\_CHECKING\_ACCOUNT</code>, <code>NO\_CREDIT\_ACCOUNT</code>, <code>NO\_SAVINGS\_ACCOUNT</code>, <code>REVOCATION\_ALL\_AUTHORIZATION\_ORDER</code>, <code>REVOCATION\_AUTHORIZATION\_ORDER</code>, <code>SOFT\_DECLINE\_AUTHENTICATION\_REQUIRED</code>, <code>SOFT\_DECLINE\_PIN\_REQUIRED</code>, <code>STOP\_PAYMENT</code>, <code>SUSPECTED\_FRAUD</code>, <code>TRANSACTION\_COUNT\_LIMIT\_EXCEEDED</code>, <code>TRANSACTION\_NOT\_PERMITTED</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| funding.gateway\_log.response.data.jit\_funding.**incremental\_authorization\_jit\_funding\_tokens**<br /><br />array of strings<br /><br />Conditionally returned     | Array of tokens referencing the JIT Funding tokens of all previous associated incremental authorization JIT Funding requests. Useful for ascertaining the final transaction amount when the original amount was incremented.<br /><br />**Allowable Values:**<br /><br />Existing incremental authorization JIT Funding tokens                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| funding.gateway\_log.response.data.jit\_funding.**memo**<br /><br />string<br /><br />Conditionally returned                                                           | Additional information that describes the JIT Funding transaction.<br /><br />**Allowable Values:**<br /><br />99 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| funding.gateway\_log.response.data.jit\_funding.**method**<br /><br />string<br /><br />Returned                                                                       | JIT Funding response type. See <a href="/core-api/gateway-jit-funding-messages/#_the_jit_funding_object">The jit\_funding object</a> for the purpose, funding event type, and description of each method.<br /><br />**Allowable Values:**<br /><br /><code>pgfs.adjustment.credit</code>, <code>pgfs.adjustment.debit</code>, <code>pgfs.authorization</code>, <code>pgfs.authorization.account\_verification</code>, <code>pgfs.authorization.capture</code>, <code>pgfs.authorization.capture.chargeback</code>, <code>pgfs.authorization.capture.chargeback.reversal</code>, <code>pgfs.authorization.incremental</code>, <code>pgfs.authorization.reversal</code>, <code>pgfs.authorization.standin</code>, <code>pgfs.auth\_plus\_capture</code>, <code>pgfs.auth\_plus\_capture.standin</code>, <code>pgfs.balanceinquiry</code>, <code>pgfs.billpayment</code>, <code>pgfs.billpayment.capture</code>, <code>pgfs.billpayment.reversal</code>, <code>pgfs.directdeposit.credit</code>, <code>pgfs.directdeposit.credit.reversal</code>, <code>pgfs.directdeposit.debit</code>, <code>pgfs.directdeposit.debit.reversal</code>, <code>pgfs.dispute.credit</code>, <code>pgfs.dispute.debit</code>, <code>pgfs.force\_capture</code>, <code>pgfs.network.load</code>, <code>pgfs.original.credit.authorization</code>, <code>pgfs.original.credit.auth\_plus\_capture</code>, <code>pgfs.pindebit.chargeback</code>, <code>pgfs.pindebit.chargeback.reversal</code>, <code>pgfs.product.inquiry</code>, <code>pgfs.refund</code>, <code>pgfs.refund.authorization</code>, <code>pgfs.refund.authorization.reversal</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| funding.gateway\_log.response.data.jit\_funding.**original\_jit\_funding\_token**<br /><br />string<br /><br />Conditionally returned                                  | Unique identifier of the first associated JIT Funding message. Useful for correlating related JIT Funding messages (that is, those associated with the same GPA order). Not included in the first of any set of related messages.<br /><br />**Allowable Values:**<br /><br />36 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| funding.gateway\_log.response.data.jit\_funding.**tags**<br /><br />string<br /><br />Conditionally returned                                                           | Customer-defined tags related to the JIT Funding transaction.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| funding.gateway\_log.response.data.jit\_funding.**token**<br /><br />string<br /><br />Returned                                                                        | Existing JIT Funding token matching the <code>funding.gateway\_log.transaction\_id</code> field of the associated GPA order.<br /><br />**NOTE:** The <code>transaction\_id</code> field updates if a subsequent JIT Funding message associated with that GPA order is sent. If multiple JIT Funding messages are associated with the same GPA order, the <code>transaction\_id</code> field matches the token of the most recent message.<br /><br />**Allowable Values:**<br /><br />36 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| funding.gateway\_log.response.data.jit\_funding.**user\_token**<br /><br />string<br /><br />Returned                                                                  | Holder of the user account that was funded.<br /><br />**Allowable Values:**<br /><br />36 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| funding.gateway\_log.response.data.**flex**<br /><br />object<br /><br />Conditionally returned                                                                        | Contains information about a Flexible Credential transaction.<br /><br />**Allowable Values:**<br /><br /><code>action</code>, <code>eligible</code>, <code>eligible\_products</code>, <code>secondary\_credential\_identifier</code>, <code>selected\_product</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| funding.gateway\_log.response.data.flex.**action**<br /><br />string<br /><br />Conditionally returned                                                                 | Indicates whether the Flexible Credential transaction object is actionable (<code>inquiry</code>) or merely informative (<code>advice</code>).<br /><br />**Allowable Values:**<br /><br /><code>inquiry</code>, <code>advice</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| funding.gateway\_log.response.data.flex.**eligible**<br /><br />string<br /><br />Conditionally returned                                                               | Indicates whether or not the transaction is eligible for Flexible Credential transactions.<br /><br />**Allowable Values:**<br /><br /><code>true</code>, <code>false</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| funding.gateway\_log.response.data.flex.**eligible\_products**<br /><br />array of strings<br /><br />Conditionally returned                                           | Specifies which of the payment instrument’s credentials is eligible for this transaction:<br /><br />- A value of <code>DEBIT</code> indicates the primary credential.<br />- A value of <code>LOAN</code> indicates the secondary credential.<br /><br />**Allowable Values:**<br /><br /><code>DEBIT</code>, <code>LOAN</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| funding.gateway\_log.response.data.flex.**secondary\_credential\_identifier**<br /><br />string<br /><br />Conditionally returned                                      | Identifies the secondary credential used in the transaction, if applicable.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| funding.gateway\_log.response.data.flex.**selected\_product**<br /><br />string<br /><br />Conditionally returned                                                      | Indicates the eligible product that was used in the transaction.<br /><br />**Allowable Values:**<br /><br /><code>DEBIT</code>, <code>LOAN</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| funding.gateway\_log.**timed\_out**<br /><br />boolean<br /><br />Conditionally returned                                                                               | Whether the gateway sent a response (<code>true</code>) or timed out (<code>false</code>).<br /><br />**Allowable Values:**<br /><br /><code>true</code>, <code>false</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| funding.gateway\_log.**transaction\_id**<br /><br />string<br /><br />Returned                                                                                         | Customer-defined identifier for the transaction.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| funding.**source**<br /><br />object<br /><br />Returned                                                                                                               | Contains funding source information for the transaction, including the funding type and time.<br /><br />**Allowable Values:**<br /><br /><code>active</code>, <code>created\_time</code>, <code>is\_default\_account</code>, <code>last\_modified\_time</code>, <code>token</code>, <code>type</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| funding.source.**active**<br /><br />boolean<br /><br />Returned                                                                                                       | Whether the funding source is active.<br /><br />**Allowable Values:**<br /><br /><code>true</code>, <code>false</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| funding.source.**created\_time**<br /><br />datetime<br /><br />Returned                                                                                               | Date and time when the funding source was created, in UTC.<br /><br />**Allowable Values:**<br /><br />datetime<br /><br />**Format:**<br />yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| funding.source.**is\_default\_account**<br /><br />boolean<br /><br />Returned                                                                                         | Whether the GPA order unload’s funding source is the default funding account.<br /><br />**Allowable Values:**<br /><br /><code>true</code>, <code>false</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| funding.source.**last\_modified\_time**<br /><br />datetime<br /><br />Returned                                                                                        | Date and time when the funding source was last modified, in UTC.<br /><br />**Allowable Values:**<br /><br />datetime<br /><br />**Format:**<br />yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| funding.source.**token**<br /><br />string<br /><br />Returned                                                                                                         | Unique identifier of the funding source.<br /><br />**Allowable Values:**<br /><br />Format: UUID                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| funding.source.**type**<br /><br />string<br /><br />Returned                                                                                                          | Funding type of the funding source.<br /><br />**Allowable Values:**<br /><br /><code>ach</code>, <code>paymentcard</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| funding.**source\_address**<br /><br />object<br /><br />Conditionally returned                                                                                        | Contains information about the billing address of the funding source.<br /><br />**Allowable Values:**<br /><br /><code>active</code>, <code>address\_1</code>, <code>address\_2</code>, <code>business\_token</code>, <code>city</code>, <code>country</code>, <code>created\_time</code>, <code>first\_name</code>, <code>is\_default\_address</code>, <code>last\_modified\_time</code>, <code>last\_name</code>, <code>phone</code>, <code>postal\_code</code>, <code>state</code>, <code>token</code>, <code>user\_token</code>, <code>zip</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| funding.source\_address.**active**<br /><br />boolean<br /><br />Conditionally returned                                                                                | Whether the address is active.<br /><br />**Allowable Values:**<br /><br /><code>true</code>, <code>false</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| funding.source\_address.**address\_1**<br /><br />string<br /><br />Returned                                                                                           | Street address of the funding source.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| funding.source\_address.**address\_2**<br /><br />string<br /><br />Conditionally returned                                                                             | Additional address information for the funding source.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| funding.source\_address.**business\_token**<br /><br />string<br /><br />Conditionally returned                                                                        | Unique identifier of the business account holder associated with the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| funding.source\_address.**city**<br /><br />string<br /><br />Returned                                                                                                 | City of the funding source.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| funding.source\_address.**country**<br /><br />string<br /><br />Returned                                                                                              | Country of the funding source.<br /><br />**Allowable Values:**<br /><br />1–40 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| funding.source\_address.**created\_time**<br /><br />datetime<br /><br />Returned                                                                                      | Date and time when the address was created, in UTC.<br /><br />**Allowable Values:**<br /><br />datetime<br /><br />**Format:**<br />yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| funding.source\_address.**first\_name**<br /><br />string<br /><br />Returned                                                                                          | First name of the account holder associated with the funding source.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| funding.source\_address.**is\_default\_address**<br /><br />boolean<br /><br />Conditionally returned                                                                  | Whether this address is the default address used by the funding source.<br /><br />**Allowable Values:**<br /><br /><code>true</code>, <code>false</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| funding.source\_address.**last\_modified\_time**<br /><br />datetime<br /><br />Returned                                                                               | Date and time when the address was last modified, in UTC.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />datetime<br /><br />**Format:**<br />yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| funding.source\_address.**last\_name**<br /><br />string<br /><br />Returned                                                                                           | Last name of the account holder associated with the funding source.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| funding.source\_address.**phone**<br /><br />string<br /><br />Conditionally returned                                                                                  | Phone number of the funding source.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| funding.source\_address.**postal\_code**<br /><br />string<br /><br />Returned                                                                                         | Postal code of the funding source.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| funding.source\_address.**state**<br /><br />string<br /><br />Returned                                                                                                | Two-character state, provincial, or territorial abbreviation.<br /><br />For the complete list, see <a href="/core-api/kyc-verification/#_valid_state_provincial_territorial_and_federal_abbreviations">Valid state, provincial, territorial, and federal abbreviations</a>.<br /><br />**Allowable Values:**<br /><br />2 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| funding.source\_address.**token**<br /><br />string<br /><br />Returned                                                                                                | Unique identifier of the <code>funding\_source\_address</code> object.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| funding.source\_address.**user\_token**<br /><br />string<br /><br />Conditionally returned                                                                            | Unique identifier of the user account holder associated with the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| funding.source\_address.**zip**<br /><br />string<br /><br />Returned                                                                                                  | United States ZIP code of the funding source.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| funding\_source\_address\_token<br /><br />string<br /><br />Conditionally returned                                                                                    | Unique identifier of the funding source address to use for this order.<br /><br />**Allowable Values:**<br /><br />Existing <code>funding\_source\_address</code> token                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| funding\_source\_token<br /><br />string<br /><br />Returned                                                                                                           | Unique identifier of the funding source to use for this order.<br /><br />**Allowable Values:**<br /><br />Existing <code>funding\_source</code> token                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| gateway\_message<br /><br />string<br /><br />Conditionally returned                                                                                                   | Message about the status of the funding request. Useful for determining whether it was approved and completed successfully, declined by the gateway, or timed out.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br /><code>Approved or completed successfully</code>, <code>Declined by gateway</code>, <code>Operation timeout</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| gateway\_token<br /><br />integer<br /><br />Conditionally returned                                                                                                    | Unique identifier of the JIT Funding request and response.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />Existing <code>gateway\_token</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| jit\_funding<br /><br />object<br /><br />Conditionally returned                                                                                                       | Contains information about the JIT Funding load event, in which funds are loaded into an account.<br /><br />This object is returned if your program uses JIT Funding.<br /><br />**Allowable Values:**<br /><br /><code>acting\_user\_token</code>, <code>address\_verification</code>, <code>amount</code>, <code>balances</code>, <code>business\_token</code>, <code>decline\_reason</code>, <code>incremental\_authorization\_jit\_funding\_tokens</code>, <code>memo</code>, <code>method</code>, <code>original\_jit\_funding\_token</code>, <code>tags</code>, <code>token</code>, <code>user\_token</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| jit\_funding.**acting\_user\_token**<br /><br />string<br /><br />Conditionally returned                                                                               | User who conducted the transaction.<br /><br />Can be a child user configured to share its parent’s account balance.<br /><br />**Allowable Values:**<br /><br />36 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| jit\_funding.**address\_verification**<br /><br />object<br /><br />Conditionally returned                                                                             | Contains address verification data used to make JIT Funding decisions.<br /><br />**Allowable Values:**<br /><br /><code>gateway</code>, <code>issuer</code>, <code>request</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| jit\_funding.address\_verification.**gateway**<br /><br />object<br /><br />Conditionally returned                                                                     | Contains address verification data consisting of address data entered by the cardholder, address data held by the Marqeta platform, and an assertion by the Marqeta platform as to whether the two sets of data match.<br /><br />**Allowable Values:**<br /><br /><code>on\_file</code>, <code>response</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| jit\_funding.address\_verification.gateway.**on\_file**<br /><br />object<br /><br />Conditionally returned                                                            | Contains address verification information.<br /><br />**Allowable Values:**<br /><br /><code>postal\_code</code>, <code>street\_address</code>, <code>zip</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| jit\_funding.address\_verification.gateway.on\_file.**postal\_code**<br /><br />string<br /><br />Conditionally returned                                               | Postal code of the address.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| jit\_funding.address\_verification.gateway.on\_file.**street\_address**<br /><br />string<br /><br />Conditionally returned                                            | Street name and number of the address.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| jit\_funding.address\_verification.gateway.on\_file.**zip**<br /><br />string<br /><br />Conditionally returned                                                        | United States ZIP code of the address.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| jit\_funding.address\_verification.gateway.**response**<br /><br />object<br /><br />Conditionally returned                                                            | Response codes and memos for account name verification, address verification, card security verification, and transactions.<br /><br />**Allowable Values:**<br /><br /><code>additional\_information</code>, <code>code</code>, <code>memo</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| jit\_funding.address\_verification.gateway.response.**additional\_information**<br /><br />string<br /><br />Conditionally returned                                    | Additional information about the transaction, such as velocity control details.<br /><br />This field is returned in transaction response objects only. It is not returned in address verification or card security verification response objects.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| jit\_funding.address\_verification.gateway.response.**code**<br /><br />string<br /><br />Returned                                                                     | Four-digit response code for address verification, card security code verification, or transactions.<br /><br />For account name verification, the four digits correspond with assertions that the first, middle, last, and full name of the cardholder on the Marqeta platform match the data provided by the cardholder.<br /><br />- <code>0</code> indicates no validation was performed<br />- <code>1</code> indicates the match was unsuccessful (not matched)<br />- <code>2</code> indicates the match was partial<br />- <code>3</code> indicates the match was exact<br /><br />For example:<br /><br />Code / First Name / Middle Name / Last Name / Full Name<br /><code>0000</code> / Not validated / Not validated / Not validated / Not validated<br /><code>1111</code> / Not matched / Not matched / Not matched / Not matched<br /><code>3333</code> / Exact match / Exact match / Exact match / Exact match<br /><code>1232</code> / Not matched / Partial match / Exact match / Partial match<br /><br />For address verification responses, the code is an assertion by the Marqeta platform as to whether its address verification data matches that provided by the cardholder:<br /><br />Code / Address / Postal Code<br /><code>0000</code> / Match / Match<br /><code>0001</code> / Match / Not matched<br /><code>0100</code> / Not matched / Match<br /><code>0101</code> / Not matched / Not matched<br /><code>0200</code> / Data not present / Match<br /><code>0201</code> / Data not present / Not matched<br /><code>0002</code> / Match / Data not present<br /><code>0102</code> / Not matched / Data not present<br /><code>0303</code> / Not validated / Not validated<br /><br />For card security verification, the code indicates whether the verification check passed and can have these possible values:<br /><br />- <code>0000</code> – Passed<br />- <code>0001</code> – Did not pass<br /><br />For a transaction, the code describes the outcome of the attempted transaction. For the full list of transaction codes, see <a href="/developer-guides/about-transactions/#_transaction_response_codes">Transaction response codes</a>.<br /><br />**Allowable Values:**<br /><br />Four-digit code |
| jit\_funding.address\_verification.gateway.response.**memo**<br /><br />string<br /><br />Returned                                                                     | Additional text that describes the response.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| jit\_funding.address\_verification.**issuer**<br /><br />object<br /><br />Conditionally returned                                                                      | Contains address verification data consisting of address data entered by the cardholder, address data held by the Marqeta platform, and an assertion by the Marqeta platform as to whether the two sets of data match.<br /><br />**Allowable Values:**<br /><br /><code>on\_file</code>, <code>response</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| jit\_funding.address\_verification.issuer.**on\_file**<br /><br />object<br /><br />Conditionally returned                                                             | Contains address verification information.<br /><br />**Allowable Values:**<br /><br /><code>postal\_code</code>, <code>street\_address</code>, <code>zip</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| jit\_funding.address\_verification.issuer.on\_file.**postal\_code**<br /><br />string<br /><br />Conditionally returned                                                | Postal code of the address.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| jit\_funding.address\_verification.issuer.on\_file.**street\_address**<br /><br />string<br /><br />Conditionally returned                                             | Street name and number of the address.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| jit\_funding.address\_verification.issuer.on\_file.**zip**<br /><br />string<br /><br />Conditionally returned                                                         | United States ZIP code of the address.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| jit\_funding.address\_verification.issuer.**response**<br /><br />object<br /><br />Conditionally returned                                                             | Response codes and memos for account name verification, address verification, card security verification, and transactions.<br /><br />**Allowable Values:**<br /><br /><code>additional\_information</code>, <code>code</code>, <code>memo</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| jit\_funding.address\_verification.issuer.response.**additional\_information**<br /><br />string<br /><br />Conditionally returned                                     | Additional information about the transaction, such as velocity control details.<br /><br />This field is returned in transaction response objects only. It is not returned in address verification or card security verification response objects.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| jit\_funding.address\_verification.issuer.response.**code**<br /><br />string<br /><br />Returned                                                                      | Four-digit response code for address verification, card security code verification, or transactions.<br /><br />For account name verification, the four digits correspond with assertions that the first, middle, last, and full name of the cardholder on the Marqeta platform match the data provided by the cardholder.<br /><br />- <code>0</code> indicates no validation was performed<br />- <code>1</code> indicates the match was unsuccessful (not matched)<br />- <code>2</code> indicates the match was partial<br />- <code>3</code> indicates the match was exact<br /><br />For example:<br /><br />Code / First Name / Middle Name / Last Name / Full Name<br /><code>0000</code> / Not validated / Not validated / Not validated / Not validated<br /><code>1111</code> / Not matched / Not matched / Not matched / Not matched<br /><code>3333</code> / Exact match / Exact match / Exact match / Exact match<br /><code>1232</code> / Not matched / Partial match / Exact match / Partial match<br /><br />For address verification responses, the code is an assertion by the Marqeta platform as to whether its address verification data matches that provided by the cardholder:<br /><br />Code / Address / Postal Code<br /><code>0000</code> / Match / Match<br /><code>0001</code> / Match / Not matched<br /><code>0100</code> / Not matched / Match<br /><code>0101</code> / Not matched / Not matched<br /><code>0200</code> / Data not present / Match<br /><code>0201</code> / Data not present / Not matched<br /><code>0002</code> / Match / Data not present<br /><code>0102</code> / Not matched / Data not present<br /><code>0303</code> / Not validated / Not validated<br /><br />For card security verification, the code indicates whether the verification check passed and can have these possible values:<br /><br />- <code>0000</code> – Passed<br />- <code>0001</code> – Did not pass<br /><br />For a transaction, the code describes the outcome of the attempted transaction. For the full list of transaction codes, see <a href="/developer-guides/about-transactions/#_transaction_response_codes">Transaction response codes</a>.<br /><br />**Allowable Values:**<br /><br />Four-digit code |
| jit\_funding.address\_verification.issuer.response.**memo**<br /><br />string<br /><br />Returned                                                                      | Additional text that describes the response.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| jit\_funding.address\_verification.**request**<br /><br />object<br /><br />Conditionally returned                                                                     | Contains address verification information.<br /><br />**Allowable Values:**<br /><br /><code>postal\_code</code>, <code>street\_address</code>, <code>zip</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| jit\_funding.address\_verification.request.**postal\_code**<br /><br />string<br /><br />Conditionally returned                                                        | Postal code of the address.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| jit\_funding.address\_verification.request.**street\_address**<br /><br />string<br /><br />Conditionally returned                                                     | Street name and number of the address.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| jit\_funding.address\_verification.request.**zip**<br /><br />string<br /><br />Conditionally returned                                                                 | United States ZIP code of the address.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| jit\_funding.**jit\_account\_name\_verification**<br /><br />object<br /><br />Conditionally returned                                                                  | Contains account name verification data used to make JIT Funding decisions from one of the following objects:<br /><br />- The <code>gateway</code> object, which contains account name verification data from your JIT Funding gateway.<br />- The <code>issuer</code> object, which contains account name verification data from the Marqeta platform.<br />- The <code>request</code> object, which contains account name verification data as it appears in a JIT Funding request.<br /><br />**Allowable Values:**<br /><br /><code>gateway</code>, <code>issuer</code>, <code>request</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| jit\_funding.jit\_account\_name\_verification.**gateway**<br /><br />object<br /><br />Conditionally returned                                                          | Contains account name verification data used to make JIT Funding decisions.<br /><br />**Allowable Values:**<br /><br /><code>first\_name</code>, <code>last\_name</code>, <code>middle\_name</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| jit\_funding.jit\_account\_name\_verification.**issuer**<br /><br />object<br /><br />Conditionally returned                                                           | Contains account name verification data used to make JIT Funding decisions.<br /><br />**Allowable Values:**<br /><br /><code>first\_name</code>, <code>last\_name</code>, <code>middle\_name</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| jit\_funding.jit\_account\_name\_verification.**request**<br /><br />object<br /><br />Conditionally returned                                                          | Contains account name verification data used to make JIT Funding decisions.<br /><br />**Allowable Values:**<br /><br /><code>first\_name</code>, <code>last\_name</code>, <code>middle\_name</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| jit\_funding.**amount**<br /><br />decimal<br /><br />Returned                                                                                                         | Requested amount of funding.<br /><br />**Allowable Values:**<br /><br />0 min<br /><br />**Format:**<br />0.00                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| jit\_funding.**balances**<br /><br />object<br /><br />Conditionally returned                                                                                          | Contains the GPA’s balance details.<br /><br />**Allowable Values:**<br /><br /><code>available\_balance</code>, <code>balances</code>, <code>cached\_balance</code>, <code>credit\_balance</code>, <code>currency\_code</code>, <code>impacted\_amount</code>, <code>last\_updated\_time</code>, <code>ledger\_balance</code>, <code>pending\_credits</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| jit\_funding.**business\_token**<br /><br />string<br /><br />Conditionally returned                                                                                   | Holder of the business account that was funded.<br /><br />**Allowable Values:**<br /><br />36 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| jit\_funding.**decline\_reason**<br /><br />string<br /><br />Conditionally returned                                                                                   | Reason why the transaction was declined.<br /><br />**Allowable Values:**<br /><br /><code>AMOUNT\_LIMIT\_EXCEEDED</code>, <code>BLOCKED\_BY\_CARDHOLDER</code>, <code>BLOCKED\_BY\_ISSUER</code>, <code>BLOCKED\_MERCHANT\_BY\_CARDHOLDER</code>, <code>CARD\_NOT\_ACTIVE</code>, <code>CARDHOLDER\_NOT\_ACTIVE</code>, <code>CLOSED\_ACCOUNT</code>, <code>DUPLICATE\_TRANSACTION</code>, <code>EXPIRED\_CARD</code>, <code>INSUFFICIENT\_FUNDS</code>, <code>INVALID\_AMOUNT</code>, <code>INVALID\_CARD</code>, <code>INVALID\_MERCHANT</code>, <code>NO\_CHECKING\_ACCOUNT</code>, <code>NO\_CREDIT\_ACCOUNT</code>, <code>NO\_SAVINGS\_ACCOUNT</code>, <code>REVOCATION\_ALL\_AUTHORIZATION\_ORDER</code>, <code>REVOCATION\_AUTHORIZATION\_ORDER</code>, <code>SOFT\_DECLINE\_AUTHENTICATION\_REQUIRED</code>, <code>SOFT\_DECLINE\_PIN\_REQUIRED</code>, <code>STOP\_PAYMENT</code>, <code>SUSPECTED\_FRAUD</code>, <code>TRANSACTION\_COUNT\_LIMIT\_EXCEEDED</code>, <code>TRANSACTION\_NOT\_PERMITTED</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| jit\_funding.**incremental\_authorization\_jit\_funding\_tokens**<br /><br />array of strings<br /><br />Conditionally returned                                        | Array of tokens referencing the JIT Funding tokens of all previous associated incremental authorization JIT Funding requests. Useful for ascertaining the final transaction amount when the original amount was incremented.<br /><br />**Allowable Values:**<br /><br />Existing incremental authorization JIT Funding tokens                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| jit\_funding.**memo**<br /><br />string<br /><br />Conditionally returned                                                                                              | Additional information that describes the JIT Funding transaction.<br /><br />**Allowable Values:**<br /><br />99 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| jit\_funding.**method**<br /><br />string<br /><br />Returned                                                                                                          | JIT Funding response type. See <a href="/core-api/gateway-jit-funding-messages/#_the_jit_funding_object">The jit\_funding object</a> for the purpose, funding event type, and description of each method.<br /><br />**Allowable Values:**<br /><br /><code>pgfs.adjustment.credit</code>, <code>pgfs.adjustment.debit</code>, <code>pgfs.authorization</code>, <code>pgfs.authorization.account\_verification</code>, <code>pgfs.authorization.capture</code>, <code>pgfs.authorization.capture.chargeback</code>, <code>pgfs.authorization.capture.chargeback.reversal</code>, <code>pgfs.authorization.incremental</code>, <code>pgfs.authorization.reversal</code>, <code>pgfs.authorization.standin</code>, <code>pgfs.auth\_plus\_capture</code>, <code>pgfs.auth\_plus\_capture.standin</code>, <code>pgfs.balanceinquiry</code>, <code>pgfs.billpayment</code>, <code>pgfs.billpayment.capture</code>, <code>pgfs.billpayment.reversal</code>, <code>pgfs.directdeposit.credit</code>, <code>pgfs.directdeposit.credit.reversal</code>, <code>pgfs.directdeposit.debit</code>, <code>pgfs.directdeposit.debit.reversal</code>, <code>pgfs.dispute.credit</code>, <code>pgfs.dispute.debit</code>, <code>pgfs.force\_capture</code>, <code>pgfs.network.load</code>, <code>pgfs.original.credit.authorization</code>, <code>pgfs.original.credit.auth\_plus\_capture</code>, <code>pgfs.pindebit.chargeback</code>, <code>pgfs.pindebit.chargeback.reversal</code>, <code>pgfs.product.inquiry</code>, <code>pgfs.refund</code>, <code>pgfs.refund.authorization</code>, <code>pgfs.refund.authorization.reversal</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| jit\_funding.**original\_jit\_funding\_token**<br /><br />string<br /><br />Conditionally returned                                                                     | Unique identifier of the first associated JIT Funding message. Useful for correlating related JIT Funding messages (that is, those associated with the same GPA order). Not included in the first of any set of related messages.<br /><br />**Allowable Values:**<br /><br />36 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| jit\_funding.**tags**<br /><br />string<br /><br />Conditionally returned                                                                                              | Customer-defined tags related to the JIT Funding transaction.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| jit\_funding.**token**<br /><br />string<br /><br />Returned                                                                                                           | Existing JIT Funding token matching the <code>funding.gateway\_log.transaction\_id</code> field of the associated GPA order.<br /><br />**NOTE:** The <code>transaction\_id</code> field updates if a subsequent JIT Funding message associated with that GPA order is sent. If multiple JIT Funding messages are associated with the same GPA order, the <code>transaction\_id</code> field matches the token of the most recent message.<br /><br />**Allowable Values:**<br /><br />36 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| jit\_funding.**user\_token**<br /><br />string<br /><br />Returned                                                                                                     | Holder of the user account that was funded.<br /><br />**Allowable Values:**<br /><br />36 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| last\_modified\_time<br /><br />datetime<br /><br />Returned                                                                                                           | Date and time when the GPA order was last modified, in UTC.<br /><br />**Allowable Values:**<br /><br />datetime<br /><br />**Format:**<br />yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| memo<br /><br />string<br /><br />Conditionally returned                                                                                                               | Additional descriptive text.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />99 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| response<br /><br />object<br /><br />Returned                                                                                                                         | Response codes and memos for account name verification, address verification, card security verification, and transactions.<br /><br />**Allowable Values:**<br /><br /><code>additional\_information</code>, <code>code</code>, <code>memo</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| response.**additional\_information**<br /><br />string<br /><br />Conditionally returned                                                                               | Additional information about the transaction, such as velocity control details.<br /><br />This field is returned in transaction response objects only. It is not returned in address verification or card security verification response objects.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| response.**code**<br /><br />string<br /><br />Returned                                                                                                                | Four-digit response code for address verification, card security code verification, or transactions.<br /><br />For account name verification, the four digits correspond with assertions that the first, middle, last, and full name of the cardholder on the Marqeta platform match the data provided by the cardholder.<br /><br />- <code>0</code> indicates no validation was performed<br />- <code>1</code> indicates the match was unsuccessful (not matched)<br />- <code>2</code> indicates the match was partial<br />- <code>3</code> indicates the match was exact<br /><br />For example:<br /><br />Code / First Name / Middle Name / Last Name / Full Name<br /><code>0000</code> / Not validated / Not validated / Not validated / Not validated<br /><code>1111</code> / Not matched / Not matched / Not matched / Not matched<br /><code>3333</code> / Exact match / Exact match / Exact match / Exact match<br /><code>1232</code> / Not matched / Partial match / Exact match / Partial match<br /><br />For address verification responses, the code is an assertion by the Marqeta platform as to whether its address verification data matches that provided by the cardholder:<br /><br />Code / Address / Postal Code<br /><code>0000</code> / Match / Match<br /><code>0001</code> / Match / Not matched<br /><code>0100</code> / Not matched / Match<br /><code>0101</code> / Not matched / Not matched<br /><code>0200</code> / Data not present / Match<br /><code>0201</code> / Data not present / Not matched<br /><code>0002</code> / Match / Data not present<br /><code>0102</code> / Not matched / Data not present<br /><code>0303</code> / Not validated / Not validated<br /><br />For card security verification, the code indicates whether the verification check passed and can have these possible values:<br /><br />- <code>0000</code> – Passed<br />- <code>0001</code> – Did not pass<br /><br />For a transaction, the code describes the outcome of the attempted transaction. For the full list of transaction codes, see <a href="/developer-guides/about-transactions/#_transaction_response_codes">Transaction response codes</a>.<br /><br />**Allowable Values:**<br /><br />Four-digit code |
| response.**memo**<br /><br />string<br /><br />Returned                                                                                                                | Additional text that describes the response.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| state<br /><br />string<br /><br />Returned                                                                                                                            | Current status of the funding transaction.<br /><br />**Allowable Values:**<br /><br /><code>PENDING</code>, <code>CLEARED</code>, <code>COMPLETION</code>, <code>DECLINED</code>, <code>ERROR</code>, <code>REVERSED</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| tags<br /><br />string<br /><br />Conditionally returned                                                                                                               | Comma-delimited list of tags describing the GPA order.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| token<br /><br />string<br /><br />Returned                                                                                                                            | Unique identifier of the GPA order.<br /><br />**Allowable Values:**<br /><br />36 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| transaction\_token<br /><br />string<br /><br />Returned                                                                                                               | Unique identifier of the transaction being funded.<br /><br />**Allowable Values:**<br /><br />Format: UUID                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| user\_token<br /><br />string<br /><br />Conditionally returned                                                                                                        | Unique identifier of the user resource.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />Existing user resource token                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |

<h3 id="_sample_response_body_2">
  Sample response body
</h3>

```json JSON expandable lines wrap theme={null}
{
  "token": "my_gpaorder_01",
  "amount": 1000,
  "created_time": "2024-11-30T23:00:15Z",
  "last_modified_time": "2024-11-30T23:10:15Z",
  "transaction_token": 156,
  "state": "COMPLETION",
  "response": {
    "code": "0000",
    "memo": "Approved or completed successfully"
  },
  "funding": {
    "amount": 1000,
    "source": {
      "type": "program",
      "token": "**********e_01",
      "active": true,
      "name": "my_program_funding_source_01",
      "is_default_account": false,
      "created_time": "2025-03-31T19:13:23Z",
      "last_modified_time": "2025-03-31T19:13:23Z"
    }
  },
  "funding_source_token": "**********e_01",
  "user_token": "my_user_01",
  "source_load_type": "ach",
  "currency_code": "USD"
}
```

<h2 id="post_gpaorders_unloads">
  Create GPA unload
</h2>

**Action:** `POST`\
**Endpoint:** `/gpaorders/unloads`

{/* <EndpointCard
title="Create GPA unload"
path="/gpaorders/unloads"
method="post"
/> */}

Use this endpoint to unload a GPA order.

Unloading a GPA order returns funds to the funding source. A GPA unload must be tied to an original GPA order and can be used to return the amount of the original order or a lesser amount.

<h3 id="_request_body_2">
  Request body
</h3>

| Fields                                                                | Description                                                                                                                                                                                                                                                                                                                                                                           |
| --------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| amount<br /><br />decimal<br /><br />Required                         | Amount of funds to return to the funding source.<br /><br />**Allowable Values:**<br /><br />decimal<br /><br />**Format:**<br />0.00                                                                                                                                                                                                                                                 |
| funding\_source\_address\_token<br /><br />string<br /><br />Optional | Unique identifier of the funding source to use for this GPA unload order.<br /><br />Send a <code>GET</code> request to <code>/fundingsources/addresses/user/{token}</code> to retrieve addresses for a specific user.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                         |
| memo<br /><br />string<br /><br />Optional                            | Additional descriptive text about the GPA unload.<br /><br />**Allowable Values:**<br /><br />99 char max                                                                                                                                                                                                                                                                             |
| original\_order\_token<br /><br />string<br /><br />Required          | Unique identifier of the original GPA order.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                                                                                                                                                                                                   |
| tags<br /><br />string<br /><br />Optional                            | Comma-delimited list of tags describing the GPA unload order.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                |
| token<br /><br />string<br /><br />Optional                           | Unique identifier of the GPA unload order.<br /><br />If you do not include a token, the system will generate one automatically. This token is necessary for use in other calls, so we recommend that rather than let the system generate one, you use a simple string that is easy to remember. This value cannot be updated.<br /><br />**Allowable Values:**<br /><br />1–36 chars |

<h3 id="_sample_request_body_2">
  Sample request body
</h3>

```json JSON lines wrap theme={null}
{
  "token": "my_unload_01",
  "original_order_token": "my_gpaorder_01",
  "amount": 500
}
```

<h3 id="_response_body_3">
  Response body
</h3>

| Fields                                                                                                                                                                 | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| amount<br /><br />decimal<br /><br />Returned                                                                                                                          | Amount of funds returned to the funding source.<br /><br />**Allowable Values:**<br /><br />decimal<br /><br />**Format:**<br />0.00                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| created\_time<br /><br />datetime<br /><br />Returned                                                                                                                  | Date and time when the GPA unload order was created, in UTC.<br /><br />**Allowable Values:**<br /><br />datetime<br /><br />**Format:**<br />yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| funding<br /><br />object<br /><br />Returned                                                                                                                          | Contains funding information for the transaction, including funding amount, type, and time.<br /><br />**Allowable Values:**<br /><br /><code>amount</code>, <code>gateway\_log</code>, <code>source</code>, <code>source\_address</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| funding.**amount**<br /><br />decimal<br /><br />Conditionally returned                                                                                                | Amount of funds loaded into the GPA.<br /><br />**Allowable Values:**<br /><br />decimal<br /><br />**Format:**<br />0.00                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| funding.**gateway\_log**<br /><br />object<br /><br />Conditionally returned                                                                                           | Contains information from the JIT Funding gateway in response to a funding request.<br /><br />**Allowable Values:**<br /><br /><code>duration</code>, <code>message</code>, <code>order\_number</code>, <code>response</code>, <code>timed\_out</code>, <code>transaction\_id</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| funding.gateway\_log.**duration**<br /><br />integer<br /><br />Conditionally returned                                                                                 | Length of time in milliseconds that the gateway took to respond to a funding request.<br /><br />**Allowable Values:**<br /><br />Any integer                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| funding.gateway\_log.**message**<br /><br />string<br /><br />Returned                                                                                                 | Message about the status of the funding request. Useful for determining whether it was approved and completed successfully, declined by the gateway, or timed out.<br /><br />**Allowable Values:**<br /><br /><code>Approved or completed successfully</code>, <code>Declined by gateway</code>, <code>Operation timeout</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| funding.gateway\_log.**order\_number**<br /><br />string<br /><br />Returned                                                                                           | Customer order number, same value as <code>transaction.token</code>.<br /><br />**Allowable Values:**<br /><br />Existing <code>transaction.token</code> value                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| funding.gateway\_log.**response**<br /><br />object<br /><br />Conditionally returned                                                                                  | Contains information from the gateway in response to a funding request.<br /><br />**Allowable Values:**<br /><br /><code>code</code>, <code>data</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| funding.gateway\_log.response.**code**<br /><br />string<br /><br />Returned                                                                                           | Code received from the gateway.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| funding.gateway\_log.response.**data**<br /><br />object<br /><br />Conditionally returned                                                                             | Contains the gateway’s information about the JIT Funding transaction.<br /><br />**Allowable Values:**<br /><br /><code>jit\_funding</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| funding.gateway\_log.response.data.**jit\_funding**<br /><br />object<br /><br />Returned                                                                              | Contains information about the JIT Funding load event, in which funds are loaded into an account.<br /><br />This object is returned if your program uses JIT Funding.<br /><br />**Allowable Values:**<br /><br /><code>acting\_user\_token</code>, <code>address\_verification</code>, <code>amount</code>, <code>balances</code>, <code>business\_token</code>, <code>decline\_reason</code>, <code>incremental\_authorization\_jit\_funding\_tokens</code>, <code>memo</code>, <code>method</code>, <code>original\_jit\_funding\_token</code>, <code>tags</code>, <code>token</code>, <code>user\_token</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| funding.gateway\_log.response.data.jit\_funding.**acting\_user\_token**<br /><br />string<br /><br />Conditionally returned                                            | User who conducted the transaction.<br /><br />Can be a child user configured to share its parent’s account balance.<br /><br />**Allowable Values:**<br /><br />36 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| funding.gateway\_log.response.data.jit\_funding.**address\_verification**<br /><br />object<br /><br />Conditionally returned                                          | Contains address verification data used to make JIT Funding decisions.<br /><br />**Allowable Values:**<br /><br /><code>gateway</code>, <code>issuer</code>, <code>request</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.**gateway**<br /><br />object<br /><br />Conditionally returned                                  | Contains address verification data consisting of address data entered by the cardholder, address data held by the Marqeta platform, and an assertion by the Marqeta platform as to whether the two sets of data match.<br /><br />**Allowable Values:**<br /><br /><code>on\_file</code>, <code>response</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.gateway.**on\_file**<br /><br />object<br /><br />Conditionally returned                         | Contains address verification information.<br /><br />**Allowable Values:**<br /><br /><code>postal\_code</code>, <code>street\_address</code>, <code>zip</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.gateway.on\_file.**postal\_code**<br /><br />string<br /><br />Conditionally returned            | Postal code of the address.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.gateway.on\_file.**street\_address**<br /><br />string<br /><br />Conditionally returned         | Street name and number of the address.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.gateway.on\_file.**zip**<br /><br />string<br /><br />Conditionally returned                     | United States ZIP code of the address.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.gateway.**response**<br /><br />object<br /><br />Conditionally returned                         | Response codes and memos for account name verification, address verification, card security verification, and transactions.<br /><br />**Allowable Values:**<br /><br /><code>additional\_information</code>, <code>code</code>, <code>memo</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.gateway.response.**additional\_information**<br /><br />string<br /><br />Conditionally returned | Additional information about the transaction, such as velocity control details.<br /><br />This field is returned in transaction response objects only. It is not returned in address verification or card security verification response objects.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.gateway.response.**code**<br /><br />string<br /><br />Returned                                  | Four-digit response code for address verification, card security code verification, or transactions.<br /><br />For account name verification, the four digits correspond with assertions that the first, middle, last, and full name of the cardholder on the Marqeta platform match the data provided by the cardholder.<br /><br />- <code>0</code> indicates no validation was performed<br />- <code>1</code> indicates the match was unsuccessful (not matched)<br />- <code>2</code> indicates the match was partial<br />- <code>3</code> indicates the match was exact<br /><br />For example:<br /><br />Code / First Name / Middle Name / Last Name / Full Name<br /><code>0000</code> / Not validated / Not validated / Not validated / Not validated<br /><code>1111</code> / Not matched / Not matched / Not matched / Not matched<br /><code>3333</code> / Exact match / Exact match / Exact match / Exact match<br /><code>1232</code> / Not matched / Partial match / Exact match / Partial match<br /><br />For address verification responses, the code is an assertion by the Marqeta platform as to whether its address verification data matches that provided by the cardholder:<br /><br />Code / Address / Postal Code<br /><code>0000</code> / Match / Match<br /><code>0001</code> / Match / Not matched<br /><code>0100</code> / Not matched / Match<br /><code>0101</code> / Not matched / Not matched<br /><code>0200</code> / Data not present / Match<br /><code>0201</code> / Data not present / Not matched<br /><code>0002</code> / Match / Data not present<br /><code>0102</code> / Not matched / Data not present<br /><code>0303</code> / Not validated / Not validated<br /><br />For card security verification, the code indicates whether the verification check passed and can have these possible values:<br /><br />- <code>0000</code> – Passed<br />- <code>0001</code> – Did not pass<br /><br />For a transaction, the code describes the outcome of the attempted transaction. For the full list of transaction codes, see <a href="/developer-guides/about-transactions/#_transaction_response_codes">Transaction response codes</a>.<br /><br />**Allowable Values:**<br /><br />Four-digit code |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.gateway.response.**memo**<br /><br />string<br /><br />Returned                                  | Additional text that describes the response.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.**issuer**<br /><br />object<br /><br />Conditionally returned                                   | Contains address verification data consisting of address data entered by the cardholder, address data held by the Marqeta platform, and an assertion by the Marqeta platform as to whether the two sets of data match.<br /><br />**Allowable Values:**<br /><br /><code>on\_file</code>, <code>response</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.issuer.**on\_file**<br /><br />object<br /><br />Conditionally returned                          | Contains address verification information.<br /><br />**Allowable Values:**<br /><br /><code>postal\_code</code>, <code>street\_address</code>, <code>zip</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.issuer.on\_file.**postal\_code**<br /><br />string<br /><br />Conditionally returned             | Postal code of the address.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.issuer.on\_file.**street\_address**<br /><br />string<br /><br />Conditionally returned          | Street name and number of the address.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.issuer.on\_file.**zip**<br /><br />string<br /><br />Conditionally returned                      | United States ZIP code of the address.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.issuer.**response**<br /><br />object<br /><br />Conditionally returned                          | Response codes and memos for account name verification, address verification, card security verification, and transactions.<br /><br />**Allowable Values:**<br /><br /><code>additional\_information</code>, <code>code</code>, <code>memo</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.issuer.response.**additional\_information**<br /><br />string<br /><br />Conditionally returned  | Additional information about the transaction, such as velocity control details.<br /><br />This field is returned in transaction response objects only. It is not returned in address verification or card security verification response objects.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.issuer.response.**code**<br /><br />string<br /><br />Returned                                   | Four-digit response code for address verification, card security code verification, or transactions.<br /><br />For account name verification, the four digits correspond with assertions that the first, middle, last, and full name of the cardholder on the Marqeta platform match the data provided by the cardholder.<br /><br />- <code>0</code> indicates no validation was performed<br />- <code>1</code> indicates the match was unsuccessful (not matched)<br />- <code>2</code> indicates the match was partial<br />- <code>3</code> indicates the match was exact<br /><br />For example:<br /><br />Code / First Name / Middle Name / Last Name / Full Name<br /><code>0000</code> / Not validated / Not validated / Not validated / Not validated<br /><code>1111</code> / Not matched / Not matched / Not matched / Not matched<br /><code>3333</code> / Exact match / Exact match / Exact match / Exact match<br /><code>1232</code> / Not matched / Partial match / Exact match / Partial match<br /><br />For address verification responses, the code is an assertion by the Marqeta platform as to whether its address verification data matches that provided by the cardholder:<br /><br />Code / Address / Postal Code<br /><code>0000</code> / Match / Match<br /><code>0001</code> / Match / Not matched<br /><code>0100</code> / Not matched / Match<br /><code>0101</code> / Not matched / Not matched<br /><code>0200</code> / Data not present / Match<br /><code>0201</code> / Data not present / Not matched<br /><code>0002</code> / Match / Data not present<br /><code>0102</code> / Not matched / Data not present<br /><code>0303</code> / Not validated / Not validated<br /><br />For card security verification, the code indicates whether the verification check passed and can have these possible values:<br /><br />- <code>0000</code> – Passed<br />- <code>0001</code> – Did not pass<br /><br />For a transaction, the code describes the outcome of the attempted transaction. For the full list of transaction codes, see <a href="/developer-guides/about-transactions/#_transaction_response_codes">Transaction response codes</a>.<br /><br />**Allowable Values:**<br /><br />Four-digit code |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.issuer.response.**memo**<br /><br />string<br /><br />Returned                                   | Additional text that describes the response.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.**request**<br /><br />object<br /><br />Conditionally returned                                  | Contains address verification information.<br /><br />**Allowable Values:**<br /><br /><code>postal\_code</code>, <code>street\_address</code>, <code>zip</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.request.**postal\_code**<br /><br />string<br /><br />Conditionally returned                     | Postal code of the address.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.request.**street\_address**<br /><br />string<br /><br />Conditionally returned                  | Street name and number of the address.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.request.**zip**<br /><br />string<br /><br />Conditionally returned                              | United States ZIP code of the address.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| funding.gateway\_log.response.data.jit\_funding.**jit\_account\_name\_verification**<br /><br />object<br /><br />Conditionally returned                               | Contains account name verification data used to make JIT Funding decisions from one of the following objects:<br /><br />- The <code>gateway</code> object, which contains account name verification data from your JIT Funding gateway.<br />- The <code>issuer</code> object, which contains account name verification data from the Marqeta platform.<br />- The <code>request</code> object, which contains account name verification data as it appears in a JIT Funding request.<br /><br />**Allowable Values:**<br /><br /><code>gateway</code>, <code>issuer</code>, <code>request</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| funding.gateway\_log.response.data.jit\_funding.jit\_account\_name\_verification.**gateway**<br /><br />object<br /><br />Conditionally returned                       | Contains account name verification data used to make JIT Funding decisions.<br /><br />**Allowable Values:**<br /><br /><code>first\_name</code>, <code>last\_name</code>, <code>middle\_name</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| funding.gateway\_log.response.data.jit\_funding.jit\_account\_name\_verification.**issuer**<br /><br />object<br /><br />Conditionally returned                        | Contains account name verification data used to make JIT Funding decisions.<br /><br />**Allowable Values:**<br /><br /><code>first\_name</code>, <code>last\_name</code>, <code>middle\_name</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| funding.gateway\_log.response.data.jit\_funding.jit\_account\_name\_verification.**request**<br /><br />object<br /><br />Conditionally returned                       | Contains account name verification data used to make JIT Funding decisions.<br /><br />**Allowable Values:**<br /><br /><code>first\_name</code>, <code>last\_name</code>, <code>middle\_name</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| funding.gateway\_log.response.data.jit\_funding.**amount**<br /><br />decimal<br /><br />Returned                                                                      | Requested amount of funding.<br /><br />**Allowable Values:**<br /><br />0 min<br /><br />**Format:**<br />0.00                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| funding.gateway\_log.response.data.jit\_funding.**balances**<br /><br />object<br /><br />Conditionally returned                                                       | Contains the GPA’s balance details.<br /><br />**Allowable Values:**<br /><br /><code>available\_balance</code>, <code>balances</code>, <code>cached\_balance</code>, <code>credit\_balance</code>, <code>currency\_code</code>, <code>impacted\_amount</code>, <code>last\_updated\_time</code>, <code>ledger\_balance</code>, <code>pending\_credits</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| funding.gateway\_log.response.data.jit\_funding.**business\_token**<br /><br />string<br /><br />Conditionally returned                                                | Holder of the business account that was funded.<br /><br />**Allowable Values:**<br /><br />36 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| funding.gateway\_log.response.data.jit\_funding.**decline\_reason**<br /><br />string<br /><br />Conditionally returned                                                | Reason why the transaction was declined.<br /><br />**Allowable Values:**<br /><br /><code>AMOUNT\_LIMIT\_EXCEEDED</code>, <code>BLOCKED\_BY\_CARDHOLDER</code>, <code>BLOCKED\_BY\_ISSUER</code>, <code>BLOCKED\_MERCHANT\_BY\_CARDHOLDER</code>, <code>CARD\_NOT\_ACTIVE</code>, <code>CARDHOLDER\_NOT\_ACTIVE</code>, <code>CLOSED\_ACCOUNT</code>, <code>DUPLICATE\_TRANSACTION</code>, <code>EXPIRED\_CARD</code>, <code>INSUFFICIENT\_FUNDS</code>, <code>INVALID\_AMOUNT</code>, <code>INVALID\_CARD</code>, <code>INVALID\_MERCHANT</code>, <code>NO\_CHECKING\_ACCOUNT</code>, <code>NO\_CREDIT\_ACCOUNT</code>, <code>NO\_SAVINGS\_ACCOUNT</code>, <code>REVOCATION\_ALL\_AUTHORIZATION\_ORDER</code>, <code>REVOCATION\_AUTHORIZATION\_ORDER</code>, <code>SOFT\_DECLINE\_AUTHENTICATION\_REQUIRED</code>, <code>SOFT\_DECLINE\_PIN\_REQUIRED</code>, <code>STOP\_PAYMENT</code>, <code>SUSPECTED\_FRAUD</code>, <code>TRANSACTION\_COUNT\_LIMIT\_EXCEEDED</code>, <code>TRANSACTION\_NOT\_PERMITTED</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| funding.gateway\_log.response.data.jit\_funding.**incremental\_authorization\_jit\_funding\_tokens**<br /><br />array of strings<br /><br />Conditionally returned     | Array of tokens referencing the JIT Funding tokens of all previous associated incremental authorization JIT Funding requests. Useful for ascertaining the final transaction amount when the original amount was incremented.<br /><br />**Allowable Values:**<br /><br />Existing incremental authorization JIT Funding tokens                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| funding.gateway\_log.response.data.jit\_funding.**memo**<br /><br />string<br /><br />Conditionally returned                                                           | Additional information that describes the JIT Funding transaction.<br /><br />**Allowable Values:**<br /><br />99 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| funding.gateway\_log.response.data.jit\_funding.**method**<br /><br />string<br /><br />Returned                                                                       | JIT Funding response type. See <a href="/core-api/gateway-jit-funding-messages/#_the_jit_funding_object">The jit\_funding object</a> for the purpose, funding event type, and description of each method.<br /><br />**Allowable Values:**<br /><br /><code>pgfs.adjustment.credit</code>, <code>pgfs.adjustment.debit</code>, <code>pgfs.authorization</code>, <code>pgfs.authorization.account\_verification</code>, <code>pgfs.authorization.capture</code>, <code>pgfs.authorization.capture.chargeback</code>, <code>pgfs.authorization.capture.chargeback.reversal</code>, <code>pgfs.authorization.incremental</code>, <code>pgfs.authorization.reversal</code>, <code>pgfs.authorization.standin</code>, <code>pgfs.auth\_plus\_capture</code>, <code>pgfs.auth\_plus\_capture.standin</code>, <code>pgfs.balanceinquiry</code>, <code>pgfs.billpayment</code>, <code>pgfs.billpayment.capture</code>, <code>pgfs.billpayment.reversal</code>, <code>pgfs.directdeposit.credit</code>, <code>pgfs.directdeposit.credit.reversal</code>, <code>pgfs.directdeposit.debit</code>, <code>pgfs.directdeposit.debit.reversal</code>, <code>pgfs.dispute.credit</code>, <code>pgfs.dispute.debit</code>, <code>pgfs.force\_capture</code>, <code>pgfs.network.load</code>, <code>pgfs.original.credit.authorization</code>, <code>pgfs.original.credit.auth\_plus\_capture</code>, <code>pgfs.pindebit.chargeback</code>, <code>pgfs.pindebit.chargeback.reversal</code>, <code>pgfs.product.inquiry</code>, <code>pgfs.refund</code>, <code>pgfs.refund.authorization</code>, <code>pgfs.refund.authorization.reversal</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| funding.gateway\_log.response.data.jit\_funding.**original\_jit\_funding\_token**<br /><br />string<br /><br />Conditionally returned                                  | Unique identifier of the first associated JIT Funding message. Useful for correlating related JIT Funding messages (that is, those associated with the same GPA order). Not included in the first of any set of related messages.<br /><br />**Allowable Values:**<br /><br />36 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| funding.gateway\_log.response.data.jit\_funding.**tags**<br /><br />string<br /><br />Conditionally returned                                                           | Customer-defined tags related to the JIT Funding transaction.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| funding.gateway\_log.response.data.jit\_funding.**token**<br /><br />string<br /><br />Returned                                                                        | Existing JIT Funding token matching the <code>funding.gateway\_log.transaction\_id</code> field of the associated GPA order.<br /><br />**NOTE:** The <code>transaction\_id</code> field updates if a subsequent JIT Funding message associated with that GPA order is sent. If multiple JIT Funding messages are associated with the same GPA order, the <code>transaction\_id</code> field matches the token of the most recent message.<br /><br />**Allowable Values:**<br /><br />36 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| funding.gateway\_log.response.data.jit\_funding.**user\_token**<br /><br />string<br /><br />Returned                                                                  | Holder of the user account that was funded.<br /><br />**Allowable Values:**<br /><br />36 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| funding.gateway\_log.response.data.**flex**<br /><br />object<br /><br />Conditionally returned                                                                        | Contains information about a Flexible Credential transaction.<br /><br />**Allowable Values:**<br /><br /><code>action</code>, <code>eligible</code>, <code>eligible\_products</code>, <code>secondary\_credential\_identifier</code>, <code>selected\_product</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| funding.gateway\_log.response.data.flex.**action**<br /><br />string<br /><br />Conditionally returned                                                                 | Indicates whether the Flexible Credential transaction object is actionable (<code>inquiry</code>) or merely informative (<code>advice</code>).<br /><br />**Allowable Values:**<br /><br /><code>inquiry</code>, <code>advice</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| funding.gateway\_log.response.data.flex.**eligible**<br /><br />string<br /><br />Conditionally returned                                                               | Indicates whether or not the transaction is eligible for Flexible Credential transactions.<br /><br />**Allowable Values:**<br /><br /><code>true</code>, <code>false</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| funding.gateway\_log.response.data.flex.**eligible\_products**<br /><br />array of strings<br /><br />Conditionally returned                                           | Specifies which of the payment instrument’s credentials is eligible for this transaction:<br /><br />- A value of <code>DEBIT</code> indicates the primary credential.<br />- A value of <code>LOAN</code> indicates the secondary credential.<br /><br />**Allowable Values:**<br /><br /><code>DEBIT</code>, <code>LOAN</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| funding.gateway\_log.response.data.flex.**secondary\_credential\_identifier**<br /><br />string<br /><br />Conditionally returned                                      | Identifies the secondary credential used in the transaction, if applicable.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| funding.gateway\_log.response.data.flex.**selected\_product**<br /><br />string<br /><br />Conditionally returned                                                      | Indicates the eligible product that was used in the transaction.<br /><br />**Allowable Values:**<br /><br /><code>DEBIT</code>, <code>LOAN</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| funding.gateway\_log.**timed\_out**<br /><br />boolean<br /><br />Conditionally returned                                                                               | Whether the gateway sent a response (<code>true</code>) or timed out (<code>false</code>).<br /><br />**Allowable Values:**<br /><br /><code>true</code>, <code>false</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| funding.gateway\_log.**transaction\_id**<br /><br />string<br /><br />Returned                                                                                         | Customer-defined identifier for the transaction.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| funding.**source**<br /><br />object<br /><br />Returned                                                                                                               | Contains funding source information for the transaction, including the funding type and time.<br /><br />**Allowable Values:**<br /><br /><code>active</code>, <code>created\_time</code>, <code>is\_default\_account</code>, <code>last\_modified\_time</code>, <code>token</code>, <code>type</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| funding.source.**active**<br /><br />boolean<br /><br />Returned                                                                                                       | Whether the funding source is active.<br /><br />**Allowable Values:**<br /><br /><code>true</code>, <code>false</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| funding.source.**created\_time**<br /><br />datetime<br /><br />Returned                                                                                               | Date and time when the funding source was created, in UTC.<br /><br />**Allowable Values:**<br /><br />datetime<br /><br />**Format:**<br />yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| funding.source.**is\_default\_account**<br /><br />boolean<br /><br />Returned                                                                                         | Whether the GPA order unload’s funding source is the default funding account.<br /><br />**Allowable Values:**<br /><br /><code>true</code>, <code>false</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| funding.source.**last\_modified\_time**<br /><br />datetime<br /><br />Returned                                                                                        | Date and time when the funding source was last modified, in UTC.<br /><br />**Allowable Values:**<br /><br />datetime<br /><br />**Format:**<br />yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| funding.source.**token**<br /><br />string<br /><br />Returned                                                                                                         | Unique identifier of the funding source.<br /><br />**Allowable Values:**<br /><br />Format: UUID                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| funding.source.**type**<br /><br />string<br /><br />Returned                                                                                                          | Funding type of the funding source.<br /><br />**Allowable Values:**<br /><br /><code>ach</code>, <code>paymentcard</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| funding.**source\_address**<br /><br />object<br /><br />Conditionally returned                                                                                        | Contains information about the billing address of the funding source.<br /><br />**Allowable Values:**<br /><br /><code>active</code>, <code>address\_1</code>, <code>address\_2</code>, <code>business\_token</code>, <code>city</code>, <code>country</code>, <code>created\_time</code>, <code>first\_name</code>, <code>is\_default\_address</code>, <code>last\_modified\_time</code>, <code>last\_name</code>, <code>phone</code>, <code>postal\_code</code>, <code>state</code>, <code>token</code>, <code>user\_token</code>, <code>zip</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| funding.source\_address.**active**<br /><br />boolean<br /><br />Conditionally returned                                                                                | Whether the address is active.<br /><br />**Allowable Values:**<br /><br /><code>true</code>, <code>false</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| funding.source\_address.**address\_1**<br /><br />string<br /><br />Returned                                                                                           | Street address of the funding source.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| funding.source\_address.**address\_2**<br /><br />string<br /><br />Conditionally returned                                                                             | Additional address information for the funding source.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| funding.source\_address.**business\_token**<br /><br />string<br /><br />Conditionally returned                                                                        | Unique identifier of the business account holder associated with the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| funding.source\_address.**city**<br /><br />string<br /><br />Returned                                                                                                 | City of the funding source.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| funding.source\_address.**country**<br /><br />string<br /><br />Returned                                                                                              | Country of the funding source.<br /><br />**Allowable Values:**<br /><br />1–40 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| funding.source\_address.**created\_time**<br /><br />datetime<br /><br />Returned                                                                                      | Date and time when the address was created, in UTC.<br /><br />**Allowable Values:**<br /><br />datetime<br /><br />**Format:**<br />yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| funding.source\_address.**first\_name**<br /><br />string<br /><br />Returned                                                                                          | First name of the account holder associated with the funding source.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| funding.source\_address.**is\_default\_address**<br /><br />boolean<br /><br />Conditionally returned                                                                  | Whether this address is the default address used by the funding source.<br /><br />**Allowable Values:**<br /><br /><code>true</code>, <code>false</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| funding.source\_address.**last\_modified\_time**<br /><br />datetime<br /><br />Returned                                                                               | Date and time when the address was last modified, in UTC.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />datetime<br /><br />**Format:**<br />yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| funding.source\_address.**last\_name**<br /><br />string<br /><br />Returned                                                                                           | Last name of the account holder associated with the funding source.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| funding.source\_address.**phone**<br /><br />string<br /><br />Conditionally returned                                                                                  | Phone number of the funding source.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| funding.source\_address.**postal\_code**<br /><br />string<br /><br />Returned                                                                                         | Postal code of the funding source.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| funding.source\_address.**state**<br /><br />string<br /><br />Returned                                                                                                | Two-character state, provincial, or territorial abbreviation.<br /><br />For the complete list, see <a href="/core-api/kyc-verification/#_valid_state_provincial_territorial_and_federal_abbreviations">Valid state, provincial, territorial, and federal abbreviations</a>.<br /><br />**Allowable Values:**<br /><br />2 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| funding.source\_address.**token**<br /><br />string<br /><br />Returned                                                                                                | Unique identifier of the <code>funding\_source\_address</code> object.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| funding.source\_address.**user\_token**<br /><br />string<br /><br />Conditionally returned                                                                            | Unique identifier of the user account holder associated with the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| funding.source\_address.**zip**<br /><br />string<br /><br />Returned                                                                                                  | United States ZIP code of the funding source.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| funding\_source\_address\_token<br /><br />string<br /><br />Conditionally returned                                                                                    | Identifies the funding source used for this order.<br /><br />**Allowable Values:**<br /><br />Existing <code>funding\_source\_address</code> token.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| funding\_source\_token<br /><br />string<br /><br />Returned                                                                                                           | Identifies the funding source used for this order.<br /><br />**Allowable Values:**<br /><br />Existing <code>funding\_source</code> token                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| jit\_funding<br /><br />object<br /><br />Conditionally returned                                                                                                       | Contains information about the JIT Funding load event, in which funds are loaded into an account.<br /><br />This object is returned if your program uses JIT Funding.<br /><br />**Allowable Values:**<br /><br /><code>acting\_user\_token</code>, <code>address\_verification</code>, <code>amount</code>, <code>balances</code>, <code>business\_token</code>, <code>decline\_reason</code>, <code>incremental\_authorization\_jit\_funding\_tokens</code>, <code>memo</code>, <code>method</code>, <code>original\_jit\_funding\_token</code>, <code>tags</code>, <code>token</code>, <code>user\_token</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| jit\_funding.**acting\_user\_token**<br /><br />string<br /><br />Conditionally returned                                                                               | User who conducted the transaction.<br /><br />Can be a child user configured to share its parent’s account balance.<br /><br />**Allowable Values:**<br /><br />36 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| jit\_funding.**address\_verification**<br /><br />object<br /><br />Conditionally returned                                                                             | Contains address verification data used to make JIT Funding decisions.<br /><br />**Allowable Values:**<br /><br /><code>gateway</code>, <code>issuer</code>, <code>request</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| jit\_funding.address\_verification.**gateway**<br /><br />object<br /><br />Conditionally returned                                                                     | Contains address verification data consisting of address data entered by the cardholder, address data held by the Marqeta platform, and an assertion by the Marqeta platform as to whether the two sets of data match.<br /><br />**Allowable Values:**<br /><br /><code>on\_file</code>, <code>response</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| jit\_funding.address\_verification.gateway.**on\_file**<br /><br />object<br /><br />Conditionally returned                                                            | Contains address verification information.<br /><br />**Allowable Values:**<br /><br /><code>postal\_code</code>, <code>street\_address</code>, <code>zip</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| jit\_funding.address\_verification.gateway.on\_file.**postal\_code**<br /><br />string<br /><br />Conditionally returned                                               | Postal code of the address.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| jit\_funding.address\_verification.gateway.on\_file.**street\_address**<br /><br />string<br /><br />Conditionally returned                                            | Street name and number of the address.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| jit\_funding.address\_verification.gateway.on\_file.**zip**<br /><br />string<br /><br />Conditionally returned                                                        | United States ZIP code of the address.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| jit\_funding.address\_verification.gateway.**response**<br /><br />object<br /><br />Conditionally returned                                                            | Response codes and memos for account name verification, address verification, card security verification, and transactions.<br /><br />**Allowable Values:**<br /><br /><code>additional\_information</code>, <code>code</code>, <code>memo</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| jit\_funding.address\_verification.gateway.response.**additional\_information**<br /><br />string<br /><br />Conditionally returned                                    | Additional information about the transaction, such as velocity control details.<br /><br />This field is returned in transaction response objects only. It is not returned in address verification or card security verification response objects.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| jit\_funding.address\_verification.gateway.response.**code**<br /><br />string<br /><br />Returned                                                                     | Four-digit response code for address verification, card security code verification, or transactions.<br /><br />For account name verification, the four digits correspond with assertions that the first, middle, last, and full name of the cardholder on the Marqeta platform match the data provided by the cardholder.<br /><br />- <code>0</code> indicates no validation was performed<br />- <code>1</code> indicates the match was unsuccessful (not matched)<br />- <code>2</code> indicates the match was partial<br />- <code>3</code> indicates the match was exact<br /><br />For example:<br /><br />Code / First Name / Middle Name / Last Name / Full Name<br /><code>0000</code> / Not validated / Not validated / Not validated / Not validated<br /><code>1111</code> / Not matched / Not matched / Not matched / Not matched<br /><code>3333</code> / Exact match / Exact match / Exact match / Exact match<br /><code>1232</code> / Not matched / Partial match / Exact match / Partial match<br /><br />For address verification responses, the code is an assertion by the Marqeta platform as to whether its address verification data matches that provided by the cardholder:<br /><br />Code / Address / Postal Code<br /><code>0000</code> / Match / Match<br /><code>0001</code> / Match / Not matched<br /><code>0100</code> / Not matched / Match<br /><code>0101</code> / Not matched / Not matched<br /><code>0200</code> / Data not present / Match<br /><code>0201</code> / Data not present / Not matched<br /><code>0002</code> / Match / Data not present<br /><code>0102</code> / Not matched / Data not present<br /><code>0303</code> / Not validated / Not validated<br /><br />For card security verification, the code indicates whether the verification check passed and can have these possible values:<br /><br />- <code>0000</code> – Passed<br />- <code>0001</code> – Did not pass<br /><br />For a transaction, the code describes the outcome of the attempted transaction. For the full list of transaction codes, see <a href="/developer-guides/about-transactions/#_transaction_response_codes">Transaction response codes</a>.<br /><br />**Allowable Values:**<br /><br />Four-digit code |
| jit\_funding.address\_verification.gateway.response.**memo**<br /><br />string<br /><br />Returned                                                                     | Additional text that describes the response.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| jit\_funding.address\_verification.**issuer**<br /><br />object<br /><br />Conditionally returned                                                                      | Contains address verification data consisting of address data entered by the cardholder, address data held by the Marqeta platform, and an assertion by the Marqeta platform as to whether the two sets of data match.<br /><br />**Allowable Values:**<br /><br /><code>on\_file</code>, <code>response</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| jit\_funding.address\_verification.issuer.**on\_file**<br /><br />object<br /><br />Conditionally returned                                                             | Contains address verification information.<br /><br />**Allowable Values:**<br /><br /><code>postal\_code</code>, <code>street\_address</code>, <code>zip</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| jit\_funding.address\_verification.issuer.on\_file.**postal\_code**<br /><br />string<br /><br />Conditionally returned                                                | Postal code of the address.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| jit\_funding.address\_verification.issuer.on\_file.**street\_address**<br /><br />string<br /><br />Conditionally returned                                             | Street name and number of the address.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| jit\_funding.address\_verification.issuer.on\_file.**zip**<br /><br />string<br /><br />Conditionally returned                                                         | United States ZIP code of the address.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| jit\_funding.address\_verification.issuer.**response**<br /><br />object<br /><br />Conditionally returned                                                             | Response codes and memos for account name verification, address verification, card security verification, and transactions.<br /><br />**Allowable Values:**<br /><br /><code>additional\_information</code>, <code>code</code>, <code>memo</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| jit\_funding.address\_verification.issuer.response.**additional\_information**<br /><br />string<br /><br />Conditionally returned                                     | Additional information about the transaction, such as velocity control details.<br /><br />This field is returned in transaction response objects only. It is not returned in address verification or card security verification response objects.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| jit\_funding.address\_verification.issuer.response.**code**<br /><br />string<br /><br />Returned                                                                      | Four-digit response code for address verification, card security code verification, or transactions.<br /><br />For account name verification, the four digits correspond with assertions that the first, middle, last, and full name of the cardholder on the Marqeta platform match the data provided by the cardholder.<br /><br />- <code>0</code> indicates no validation was performed<br />- <code>1</code> indicates the match was unsuccessful (not matched)<br />- <code>2</code> indicates the match was partial<br />- <code>3</code> indicates the match was exact<br /><br />For example:<br /><br />Code / First Name / Middle Name / Last Name / Full Name<br /><code>0000</code> / Not validated / Not validated / Not validated / Not validated<br /><code>1111</code> / Not matched / Not matched / Not matched / Not matched<br /><code>3333</code> / Exact match / Exact match / Exact match / Exact match<br /><code>1232</code> / Not matched / Partial match / Exact match / Partial match<br /><br />For address verification responses, the code is an assertion by the Marqeta platform as to whether its address verification data matches that provided by the cardholder:<br /><br />Code / Address / Postal Code<br /><code>0000</code> / Match / Match<br /><code>0001</code> / Match / Not matched<br /><code>0100</code> / Not matched / Match<br /><code>0101</code> / Not matched / Not matched<br /><code>0200</code> / Data not present / Match<br /><code>0201</code> / Data not present / Not matched<br /><code>0002</code> / Match / Data not present<br /><code>0102</code> / Not matched / Data not present<br /><code>0303</code> / Not validated / Not validated<br /><br />For card security verification, the code indicates whether the verification check passed and can have these possible values:<br /><br />- <code>0000</code> – Passed<br />- <code>0001</code> – Did not pass<br /><br />For a transaction, the code describes the outcome of the attempted transaction. For the full list of transaction codes, see <a href="/developer-guides/about-transactions/#_transaction_response_codes">Transaction response codes</a>.<br /><br />**Allowable Values:**<br /><br />Four-digit code |
| jit\_funding.address\_verification.issuer.response.**memo**<br /><br />string<br /><br />Returned                                                                      | Additional text that describes the response.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| jit\_funding.address\_verification.**request**<br /><br />object<br /><br />Conditionally returned                                                                     | Contains address verification information.<br /><br />**Allowable Values:**<br /><br /><code>postal\_code</code>, <code>street\_address</code>, <code>zip</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| jit\_funding.address\_verification.request.**postal\_code**<br /><br />string<br /><br />Conditionally returned                                                        | Postal code of the address.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| jit\_funding.address\_verification.request.**street\_address**<br /><br />string<br /><br />Conditionally returned                                                     | Street name and number of the address.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| jit\_funding.address\_verification.request.**zip**<br /><br />string<br /><br />Conditionally returned                                                                 | United States ZIP code of the address.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| jit\_funding.**jit\_account\_name\_verification**<br /><br />object<br /><br />Conditionally returned                                                                  | Contains account name verification data used to make JIT Funding decisions from one of the following objects:<br /><br />- The <code>gateway</code> object, which contains account name verification data from your JIT Funding gateway.<br />- The <code>issuer</code> object, which contains account name verification data from the Marqeta platform.<br />- The <code>request</code> object, which contains account name verification data as it appears in a JIT Funding request.<br /><br />**Allowable Values:**<br /><br /><code>gateway</code>, <code>issuer</code>, <code>request</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| jit\_funding.jit\_account\_name\_verification.**gateway**<br /><br />object<br /><br />Conditionally returned                                                          | Contains account name verification data used to make JIT Funding decisions.<br /><br />**Allowable Values:**<br /><br /><code>first\_name</code>, <code>last\_name</code>, <code>middle\_name</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| jit\_funding.jit\_account\_name\_verification.**issuer**<br /><br />object<br /><br />Conditionally returned                                                           | Contains account name verification data used to make JIT Funding decisions.<br /><br />**Allowable Values:**<br /><br /><code>first\_name</code>, <code>last\_name</code>, <code>middle\_name</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| jit\_funding.jit\_account\_name\_verification.**request**<br /><br />object<br /><br />Conditionally returned                                                          | Contains account name verification data used to make JIT Funding decisions.<br /><br />**Allowable Values:**<br /><br /><code>first\_name</code>, <code>last\_name</code>, <code>middle\_name</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| jit\_funding.**amount**<br /><br />decimal<br /><br />Returned                                                                                                         | Requested amount of funding.<br /><br />**Allowable Values:**<br /><br />0 min<br /><br />**Format:**<br />0.00                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| jit\_funding.**balances**<br /><br />object<br /><br />Conditionally returned                                                                                          | Contains the GPA’s balance details.<br /><br />**Allowable Values:**<br /><br /><code>available\_balance</code>, <code>balances</code>, <code>cached\_balance</code>, <code>credit\_balance</code>, <code>currency\_code</code>, <code>impacted\_amount</code>, <code>last\_updated\_time</code>, <code>ledger\_balance</code>, <code>pending\_credits</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| jit\_funding.**business\_token**<br /><br />string<br /><br />Conditionally returned                                                                                   | Holder of the business account that was funded.<br /><br />**Allowable Values:**<br /><br />36 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| jit\_funding.**decline\_reason**<br /><br />string<br /><br />Conditionally returned                                                                                   | Reason why the transaction was declined.<br /><br />**Allowable Values:**<br /><br /><code>AMOUNT\_LIMIT\_EXCEEDED</code>, <code>BLOCKED\_BY\_CARDHOLDER</code>, <code>BLOCKED\_BY\_ISSUER</code>, <code>BLOCKED\_MERCHANT\_BY\_CARDHOLDER</code>, <code>CARD\_NOT\_ACTIVE</code>, <code>CARDHOLDER\_NOT\_ACTIVE</code>, <code>CLOSED\_ACCOUNT</code>, <code>DUPLICATE\_TRANSACTION</code>, <code>EXPIRED\_CARD</code>, <code>INSUFFICIENT\_FUNDS</code>, <code>INVALID\_AMOUNT</code>, <code>INVALID\_CARD</code>, <code>INVALID\_MERCHANT</code>, <code>NO\_CHECKING\_ACCOUNT</code>, <code>NO\_CREDIT\_ACCOUNT</code>, <code>NO\_SAVINGS\_ACCOUNT</code>, <code>REVOCATION\_ALL\_AUTHORIZATION\_ORDER</code>, <code>REVOCATION\_AUTHORIZATION\_ORDER</code>, <code>SOFT\_DECLINE\_AUTHENTICATION\_REQUIRED</code>, <code>SOFT\_DECLINE\_PIN\_REQUIRED</code>, <code>STOP\_PAYMENT</code>, <code>SUSPECTED\_FRAUD</code>, <code>TRANSACTION\_COUNT\_LIMIT\_EXCEEDED</code>, <code>TRANSACTION\_NOT\_PERMITTED</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| jit\_funding.**incremental\_authorization\_jit\_funding\_tokens**<br /><br />array of strings<br /><br />Conditionally returned                                        | Array of tokens referencing the JIT Funding tokens of all previous associated incremental authorization JIT Funding requests. Useful for ascertaining the final transaction amount when the original amount was incremented.<br /><br />**Allowable Values:**<br /><br />Existing incremental authorization JIT Funding tokens                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| jit\_funding.**memo**<br /><br />string<br /><br />Conditionally returned                                                                                              | Additional information that describes the JIT Funding transaction.<br /><br />**Allowable Values:**<br /><br />99 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| jit\_funding.**method**<br /><br />string<br /><br />Returned                                                                                                          | JIT Funding response type. See <a href="/core-api/gateway-jit-funding-messages/#_the_jit_funding_object">The jit\_funding object</a> for the purpose, funding event type, and description of each method.<br /><br />**Allowable Values:**<br /><br /><code>pgfs.adjustment.credit</code>, <code>pgfs.adjustment.debit</code>, <code>pgfs.authorization</code>, <code>pgfs.authorization.account\_verification</code>, <code>pgfs.authorization.capture</code>, <code>pgfs.authorization.capture.chargeback</code>, <code>pgfs.authorization.capture.chargeback.reversal</code>, <code>pgfs.authorization.incremental</code>, <code>pgfs.authorization.reversal</code>, <code>pgfs.authorization.standin</code>, <code>pgfs.auth\_plus\_capture</code>, <code>pgfs.auth\_plus\_capture.standin</code>, <code>pgfs.balanceinquiry</code>, <code>pgfs.billpayment</code>, <code>pgfs.billpayment.capture</code>, <code>pgfs.billpayment.reversal</code>, <code>pgfs.directdeposit.credit</code>, <code>pgfs.directdeposit.credit.reversal</code>, <code>pgfs.directdeposit.debit</code>, <code>pgfs.directdeposit.debit.reversal</code>, <code>pgfs.dispute.credit</code>, <code>pgfs.dispute.debit</code>, <code>pgfs.force\_capture</code>, <code>pgfs.network.load</code>, <code>pgfs.original.credit.authorization</code>, <code>pgfs.original.credit.auth\_plus\_capture</code>, <code>pgfs.pindebit.chargeback</code>, <code>pgfs.pindebit.chargeback.reversal</code>, <code>pgfs.product.inquiry</code>, <code>pgfs.refund</code>, <code>pgfs.refund.authorization</code>, <code>pgfs.refund.authorization.reversal</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| jit\_funding.**original\_jit\_funding\_token**<br /><br />string<br /><br />Conditionally returned                                                                     | Unique identifier of the first associated JIT Funding message. Useful for correlating related JIT Funding messages (that is, those associated with the same GPA order). Not included in the first of any set of related messages.<br /><br />**Allowable Values:**<br /><br />36 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| jit\_funding.**tags**<br /><br />string<br /><br />Conditionally returned                                                                                              | Customer-defined tags related to the JIT Funding transaction.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| jit\_funding.**token**<br /><br />string<br /><br />Returned                                                                                                           | Existing JIT Funding token matching the <code>funding.gateway\_log.transaction\_id</code> field of the associated GPA order.<br /><br />**NOTE:** The <code>transaction\_id</code> field updates if a subsequent JIT Funding message associated with that GPA order is sent. If multiple JIT Funding messages are associated with the same GPA order, the <code>transaction\_id</code> field matches the token of the most recent message.<br /><br />**Allowable Values:**<br /><br />36 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| jit\_funding.**user\_token**<br /><br />string<br /><br />Returned                                                                                                     | Holder of the user account that was funded.<br /><br />**Allowable Values:**<br /><br />36 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| last\_modified\_time<br /><br />datetime<br /><br />Returned                                                                                                           | Date and time when the GPA unload order was last modified, in UTC.<br /><br />**Allowable Values:**<br /><br />datetime<br /><br />**Format:**<br />yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| memo<br /><br />string<br /><br />Conditionally returned                                                                                                               | Additional descriptive text.<br /><br />**Allowable Values:**<br /><br />99 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| original\_order\_token<br /><br />string<br /><br />Conditionally returned                                                                                             | Identifies the original GPA order.<br /><br />**Allowable Values:**<br /><br />Existing GPA order token                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| response<br /><br />object<br /><br />Returned                                                                                                                         | Response codes and memos for account name verification, address verification, card security verification, and transactions.<br /><br />**Allowable Values:**<br /><br /><code>additional\_information</code>, <code>code</code>, <code>memo</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| response.**additional\_information**<br /><br />string<br /><br />Conditionally returned                                                                               | Additional information about the transaction, such as velocity control details.<br /><br />This field is returned in transaction response objects only. It is not returned in address verification or card security verification response objects.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| response.**code**<br /><br />string<br /><br />Returned                                                                                                                | Four-digit response code for address verification, card security code verification, or transactions.<br /><br />For account name verification, the four digits correspond with assertions that the first, middle, last, and full name of the cardholder on the Marqeta platform match the data provided by the cardholder.<br /><br />- <code>0</code> indicates no validation was performed<br />- <code>1</code> indicates the match was unsuccessful (not matched)<br />- <code>2</code> indicates the match was partial<br />- <code>3</code> indicates the match was exact<br /><br />For example:<br /><br />Code / First Name / Middle Name / Last Name / Full Name<br /><code>0000</code> / Not validated / Not validated / Not validated / Not validated<br /><code>1111</code> / Not matched / Not matched / Not matched / Not matched<br /><code>3333</code> / Exact match / Exact match / Exact match / Exact match<br /><code>1232</code> / Not matched / Partial match / Exact match / Partial match<br /><br />For address verification responses, the code is an assertion by the Marqeta platform as to whether its address verification data matches that provided by the cardholder:<br /><br />Code / Address / Postal Code<br /><code>0000</code> / Match / Match<br /><code>0001</code> / Match / Not matched<br /><code>0100</code> / Not matched / Match<br /><code>0101</code> / Not matched / Not matched<br /><code>0200</code> / Data not present / Match<br /><code>0201</code> / Data not present / Not matched<br /><code>0002</code> / Match / Data not present<br /><code>0102</code> / Not matched / Data not present<br /><code>0303</code> / Not validated / Not validated<br /><br />For card security verification, the code indicates whether the verification check passed and can have these possible values:<br /><br />- <code>0000</code> – Passed<br />- <code>0001</code> – Did not pass<br /><br />For a transaction, the code describes the outcome of the attempted transaction. For the full list of transaction codes, see <a href="/developer-guides/about-transactions/#_transaction_response_codes">Transaction response codes</a>.<br /><br />**Allowable Values:**<br /><br />Four-digit code |
| response.**memo**<br /><br />string<br /><br />Returned                                                                                                                | Additional text that describes the response.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| state<br /><br />string<br /><br />Returned                                                                                                                            | Current status of the GPA unload order.<br /><br />**Allowable Values:**<br /><br /><code>PENDING</code>, <code>CLEARED</code>, <code>COMPLETION</code>, <code>DECLINED</code>, <code>ERROR</code>, <code>REVERSED</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| tags<br /><br />string<br /><br />Conditionally returned                                                                                                               | Comma-delimited list of tags describing the GPA order.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| token<br /><br />string<br /><br />Returned                                                                                                                            | Unique identifier of the GPA unload order.<br /><br />**Allowable Values:**<br /><br />Existing GPA unload order token                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| transaction\_token<br /><br />string<br /><br />Returned                                                                                                               | Unique identifier of the transaction.<br /><br />**Allowable Values:**<br /><br />Format: UUID                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |

<h3 id="_sample_response_body_3">
  Sample response body
</h3>

```json JSON expandable lines wrap theme={null}
{
  "token": "my_unload_01",
  "amount": 500,
  "created_time": "2024-11-30T23:14:50Z",
  "last_modified_time": "2024-11-30T23:30:50Z",
  "transaction_token": "158",
  "state": "COMPLETION",
  "response": {
    "code": "0000",
    "memo": "Approved or completed successfully"
  },
  "funding": {
    "amount": 500,
    "source": {
      "type": "program",
      "token": "**********e_01",
      "active": true,
      "name": "my_program_funding_source_01",
      "is_default_account": false,
      "created_time": "2025-03-31T19:13:23Z",
      "last_modified_time": "2025-03-31T19:13:23Z"
    }
  },
  "funding_source_token": "**********e_01",
  "original_order_token": "my_gpaorder_01"
}
```

<h2 id="get_gpaorders_unloads">
  List GPA unloads
</h2>

**Action:** `GET`\
**Endpoint:** `/gpaorders/unloads`

{/* <EndpointCard
title="List GPA unloads"
path="/gpaorders/unloads"
method="get"
/> */}

Use this endpoint to list all GPA unloads or GPA unloads associated with a specific user or business.

This endpoint supports [field filtering](/core-api/field-filtering/) and [pagination](/core-api/sorting-and-pagination/).

<h3 id="_url_query_parameters">
  URL query parameters
</h3>

| Fields                                                       | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| ------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| count<br /><br />integer<br /><br />Optional                 | Number of resources to retrieve.<br /><br />**Allowable Values:**<br /><br />1-10<br /><br />**Default value:**<br />5                                                                                                                                                                                                                                                                                                                                                                      |
| start\_index<br /><br />integer<br /><br />Optional          | Sort order index of the first resource in the returned array.<br /><br />**Allowable Values:**<br /><br />Any integer<br /><br />**Default value:**<br />0                                                                                                                                                                                                                                                                                                                                  |
| fields<br /><br />string<br /><br />Optional                 | Comma-delimited list of fields to return (<code>field\_1,field\_2</code>, and so on). Leave blank to return all fields.<br /><br />**Allowable Values:**<br /><br />Comma-delimited list of fields, or blank                                                                                                                                                                                                                                                                                |
| sort\_by<br /><br />string<br /><br />Optional               | Field on which to sort. Use any field in the resource model, or one of the system fields <code>lastModifiedTime</code> or <code>createdTime</code>. Prefix the field name with a hyphen (<code>-</code>) to sort in descending order. Omit the hyphen to sort in ascending order.<br /><br />**Allowable Values:**<br /><br /><code>createdTime</code>, <code>lastModifiedTime</code>, or any field in the resource model<br /><br />**Default value:**<br /><code>-lastModifiedTime</code> |
| user\_token<br /><br />string<br /><br />Optional            | Unique identifier of the user resource.<br /><br />Send a <code>GET</code> request to <code>/users</code> to retrieve user tokens.<br /><br />**Allowable Values:**<br /><br />Existing user resource token                                                                                                                                                                                                                                                                                 |
| business\_token<br /><br />string<br /><br />Optional        | Unique identifier of the business resource.<br /><br />Send a <code>GET</code> request to <code>/businesses</code> to retrieve business tokens.<br /><br />**Allowable Values:**<br /><br />Existing business resource token                                                                                                                                                                                                                                                                |
| original\_order\_token<br /><br />string<br /><br />Optional | Unique identifier of the original GPA order.<br /><br />Send a <code>GET</code> request to <code>/transactions?type=gpa.credit</code> to retrieve GPA order tokens.<br /><br />**Allowable Values:**<br /><br />Existing GPA order token                                                                                                                                                                                                                                                    |

<h3 id="_response_body_4">
  Response body
</h3>

| Fields                                                                                                                                                                         | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| count<br /><br />integer<br /><br />Conditionally returned                                                                                                                     | Number of resources to retrieve.<br /><br />This field is returned if there are resources in your returned array.<br /><br />**Allowable Values:**<br /><br />1-10                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| data<br /><br />array of objects<br /><br />Conditionally returned                                                                                                             | Array of GPA unload order objects.<br /><br />Objects are returned as appropriate to your query.<br /><br />**Allowable Values:**<br /><br />Valid array of one or more GPA unload order objects                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| data\[].**amount**<br /><br />decimal<br /><br />Returned                                                                                                                      | Amount of funds returned to the funding source.<br /><br />**Allowable Values:**<br /><br />decimal<br /><br />**Format:**<br />0.00                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| data\[].**created\_time**<br /><br />datetime<br /><br />Returned                                                                                                              | Date and time when the GPA unload order was created, in UTC.<br /><br />**Allowable Values:**<br /><br />datetime<br /><br />**Format:**<br />yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| data\[].**funding**<br /><br />object<br /><br />Returned                                                                                                                      | Contains funding information for the transaction, including funding amount, type, and time.<br /><br />**Allowable Values:**<br /><br /><code>amount</code>, <code>gateway\_log</code>, <code>source</code>, <code>source\_address</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| data\[].funding.**amount**<br /><br />decimal<br /><br />Conditionally returned                                                                                                | Amount of funds loaded into the GPA.<br /><br />**Allowable Values:**<br /><br />decimal<br /><br />**Format:**<br />0.00                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| data\[].funding.**gateway\_log**<br /><br />object<br /><br />Conditionally returned                                                                                           | Contains information from the JIT Funding gateway in response to a funding request.<br /><br />**Allowable Values:**<br /><br /><code>duration</code>, <code>message</code>, <code>order\_number</code>, <code>response</code>, <code>timed\_out</code>, <code>transaction\_id</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| data\[].funding.gateway\_log.**duration**<br /><br />integer<br /><br />Conditionally returned                                                                                 | Length of time in milliseconds that the gateway took to respond to a funding request.<br /><br />**Allowable Values:**<br /><br />Any integer                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| data\[].funding.gateway\_log.**message**<br /><br />string<br /><br />Returned                                                                                                 | Message about the status of the funding request. Useful for determining whether it was approved and completed successfully, declined by the gateway, or timed out.<br /><br />**Allowable Values:**<br /><br /><code>Approved or completed successfully</code>, <code>Declined by gateway</code>, <code>Operation timeout</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| data\[].funding.gateway\_log.**order\_number**<br /><br />string<br /><br />Returned                                                                                           | Customer order number, same value as <code>transaction.token</code>.<br /><br />**Allowable Values:**<br /><br />Existing <code>transaction.token</code> value                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| data\[].funding.gateway\_log.**response**<br /><br />object<br /><br />Conditionally returned                                                                                  | Contains information from the gateway in response to a funding request.<br /><br />**Allowable Values:**<br /><br /><code>code</code>, <code>data</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| data\[].funding.gateway\_log.response.**code**<br /><br />string<br /><br />Returned                                                                                           | Code received from the gateway.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| data\[].funding.gateway\_log.response.**data**<br /><br />object<br /><br />Conditionally returned                                                                             | Contains the gateway’s information about the JIT Funding transaction.<br /><br />**Allowable Values:**<br /><br /><code>jit\_funding</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| data\[].funding.gateway\_log.response.data.**jit\_funding**<br /><br />object<br /><br />Returned                                                                              | Contains information about the JIT Funding load event, in which funds are loaded into an account.<br /><br />This object is returned if your program uses JIT Funding.<br /><br />**Allowable Values:**<br /><br /><code>acting\_user\_token</code>, <code>address\_verification</code>, <code>amount</code>, <code>balances</code>, <code>business\_token</code>, <code>decline\_reason</code>, <code>incremental\_authorization\_jit\_funding\_tokens</code>, <code>memo</code>, <code>method</code>, <code>original\_jit\_funding\_token</code>, <code>tags</code>, <code>token</code>, <code>user\_token</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| data\[].funding.gateway\_log.response.data.jit\_funding.**acting\_user\_token**<br /><br />string<br /><br />Conditionally returned                                            | User who conducted the transaction.<br /><br />Can be a child user configured to share its parent’s account balance.<br /><br />**Allowable Values:**<br /><br />36 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| data\[].funding.gateway\_log.response.data.jit\_funding.**address\_verification**<br /><br />object<br /><br />Conditionally returned                                          | Contains address verification data used to make JIT Funding decisions.<br /><br />**Allowable Values:**<br /><br /><code>gateway</code>, <code>issuer</code>, <code>request</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| data\[].funding.gateway\_log.response.data.jit\_funding.address\_verification.**gateway**<br /><br />object<br /><br />Conditionally returned                                  | Contains address verification data consisting of address data entered by the cardholder, address data held by the Marqeta platform, and an assertion by the Marqeta platform as to whether the two sets of data match.<br /><br />**Allowable Values:**<br /><br /><code>on\_file</code>, <code>response</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| data\[].funding.gateway\_log.response.data.jit\_funding.address\_verification.gateway.**on\_file**<br /><br />object<br /><br />Conditionally returned                         | Contains address verification information.<br /><br />**Allowable Values:**<br /><br /><code>postal\_code</code>, <code>street\_address</code>, <code>zip</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| data\[].funding.gateway\_log.response.data.jit\_funding.address\_verification.gateway.on\_file.**postal\_code**<br /><br />string<br /><br />Conditionally returned            | Postal code of the address.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| data\[].funding.gateway\_log.response.data.jit\_funding.address\_verification.gateway.on\_file.**street\_address**<br /><br />string<br /><br />Conditionally returned         | Street name and number of the address.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| data\[].funding.gateway\_log.response.data.jit\_funding.address\_verification.gateway.on\_file.**zip**<br /><br />string<br /><br />Conditionally returned                     | United States ZIP code of the address.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| data\[].funding.gateway\_log.response.data.jit\_funding.address\_verification.gateway.**response**<br /><br />object<br /><br />Conditionally returned                         | Response codes and memos for account name verification, address verification, card security verification, and transactions.<br /><br />**Allowable Values:**<br /><br /><code>additional\_information</code>, <code>code</code>, <code>memo</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| data\[].funding.gateway\_log.response.data.jit\_funding.address\_verification.gateway.response.**additional\_information**<br /><br />string<br /><br />Conditionally returned | Additional information about the transaction, such as velocity control details.<br /><br />This field is returned in transaction response objects only. It is not returned in address verification or card security verification response objects.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| data\[].funding.gateway\_log.response.data.jit\_funding.address\_verification.gateway.response.**code**<br /><br />string<br /><br />Returned                                  | Four-digit response code for address verification, card security code verification, or transactions.<br /><br />For account name verification, the four digits correspond with assertions that the first, middle, last, and full name of the cardholder on the Marqeta platform match the data provided by the cardholder.<br /><br />- <code>0</code> indicates no validation was performed<br />- <code>1</code> indicates the match was unsuccessful (not matched)<br />- <code>2</code> indicates the match was partial<br />- <code>3</code> indicates the match was exact<br /><br />For example:<br /><br />Code / First Name / Middle Name / Last Name / Full Name<br /><code>0000</code> / Not validated / Not validated / Not validated / Not validated<br /><code>1111</code> / Not matched / Not matched / Not matched / Not matched<br /><code>3333</code> / Exact match / Exact match / Exact match / Exact match<br /><code>1232</code> / Not matched / Partial match / Exact match / Partial match<br /><br />For address verification responses, the code is an assertion by the Marqeta platform as to whether its address verification data matches that provided by the cardholder:<br /><br />Code / Address / Postal Code<br /><code>0000</code> / Match / Match<br /><code>0001</code> / Match / Not matched<br /><code>0100</code> / Not matched / Match<br /><code>0101</code> / Not matched / Not matched<br /><code>0200</code> / Data not present / Match<br /><code>0201</code> / Data not present / Not matched<br /><code>0002</code> / Match / Data not present<br /><code>0102</code> / Not matched / Data not present<br /><code>0303</code> / Not validated / Not validated<br /><br />For card security verification, the code indicates whether the verification check passed and can have these possible values:<br /><br />- <code>0000</code> – Passed<br />- <code>0001</code> – Did not pass<br /><br />For a transaction, the code describes the outcome of the attempted transaction. For the full list of transaction codes, see <a href="/developer-guides/about-transactions/#_transaction_response_codes">Transaction response codes</a>.<br /><br />**Allowable Values:**<br /><br />Four-digit code |
| data\[].funding.gateway\_log.response.data.jit\_funding.address\_verification.gateway.response.**memo**<br /><br />string<br /><br />Returned                                  | Additional text that describes the response.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| data\[].funding.gateway\_log.response.data.jit\_funding.address\_verification.**issuer**<br /><br />object<br /><br />Conditionally returned                                   | Contains address verification data consisting of address data entered by the cardholder, address data held by the Marqeta platform, and an assertion by the Marqeta platform as to whether the two sets of data match.<br /><br />**Allowable Values:**<br /><br /><code>on\_file</code>, <code>response</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| data\[].funding.gateway\_log.response.data.jit\_funding.address\_verification.issuer.**on\_file**<br /><br />object<br /><br />Conditionally returned                          | Contains address verification information.<br /><br />**Allowable Values:**<br /><br /><code>postal\_code</code>, <code>street\_address</code>, <code>zip</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| data\[].funding.gateway\_log.response.data.jit\_funding.address\_verification.issuer.on\_file.**postal\_code**<br /><br />string<br /><br />Conditionally returned             | Postal code of the address.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| data\[].funding.gateway\_log.response.data.jit\_funding.address\_verification.issuer.on\_file.**street\_address**<br /><br />string<br /><br />Conditionally returned          | Street name and number of the address.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| data\[].funding.gateway\_log.response.data.jit\_funding.address\_verification.issuer.on\_file.**zip**<br /><br />string<br /><br />Conditionally returned                      | United States ZIP code of the address.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| data\[].funding.gateway\_log.response.data.jit\_funding.address\_verification.issuer.**response**<br /><br />object<br /><br />Conditionally returned                          | Response codes and memos for account name verification, address verification, card security verification, and transactions.<br /><br />**Allowable Values:**<br /><br /><code>additional\_information</code>, <code>code</code>, <code>memo</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| data\[].funding.gateway\_log.response.data.jit\_funding.address\_verification.issuer.response.**additional\_information**<br /><br />string<br /><br />Conditionally returned  | Additional information about the transaction, such as velocity control details.<br /><br />This field is returned in transaction response objects only. It is not returned in address verification or card security verification response objects.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| data\[].funding.gateway\_log.response.data.jit\_funding.address\_verification.issuer.response.**code**<br /><br />string<br /><br />Returned                                   | Four-digit response code for address verification, card security code verification, or transactions.<br /><br />For account name verification, the four digits correspond with assertions that the first, middle, last, and full name of the cardholder on the Marqeta platform match the data provided by the cardholder.<br /><br />- <code>0</code> indicates no validation was performed<br />- <code>1</code> indicates the match was unsuccessful (not matched)<br />- <code>2</code> indicates the match was partial<br />- <code>3</code> indicates the match was exact<br /><br />For example:<br /><br />Code / First Name / Middle Name / Last Name / Full Name<br /><code>0000</code> / Not validated / Not validated / Not validated / Not validated<br /><code>1111</code> / Not matched / Not matched / Not matched / Not matched<br /><code>3333</code> / Exact match / Exact match / Exact match / Exact match<br /><code>1232</code> / Not matched / Partial match / Exact match / Partial match<br /><br />For address verification responses, the code is an assertion by the Marqeta platform as to whether its address verification data matches that provided by the cardholder:<br /><br />Code / Address / Postal Code<br /><code>0000</code> / Match / Match<br /><code>0001</code> / Match / Not matched<br /><code>0100</code> / Not matched / Match<br /><code>0101</code> / Not matched / Not matched<br /><code>0200</code> / Data not present / Match<br /><code>0201</code> / Data not present / Not matched<br /><code>0002</code> / Match / Data not present<br /><code>0102</code> / Not matched / Data not present<br /><code>0303</code> / Not validated / Not validated<br /><br />For card security verification, the code indicates whether the verification check passed and can have these possible values:<br /><br />- <code>0000</code> – Passed<br />- <code>0001</code> – Did not pass<br /><br />For a transaction, the code describes the outcome of the attempted transaction. For the full list of transaction codes, see <a href="/developer-guides/about-transactions/#_transaction_response_codes">Transaction response codes</a>.<br /><br />**Allowable Values:**<br /><br />Four-digit code |
| data\[].funding.gateway\_log.response.data.jit\_funding.address\_verification.issuer.response.**memo**<br /><br />string<br /><br />Returned                                   | Additional text that describes the response.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| data\[].funding.gateway\_log.response.data.jit\_funding.address\_verification.**request**<br /><br />object<br /><br />Conditionally returned                                  | Contains address verification information.<br /><br />**Allowable Values:**<br /><br /><code>postal\_code</code>, <code>street\_address</code>, <code>zip</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| data\[].funding.gateway\_log.response.data.jit\_funding.address\_verification.request.**postal\_code**<br /><br />string<br /><br />Conditionally returned                     | Postal code of the address.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| data\[].funding.gateway\_log.response.data.jit\_funding.address\_verification.request.**street\_address**<br /><br />string<br /><br />Conditionally returned                  | Street name and number of the address.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| data\[].funding.gateway\_log.response.data.jit\_funding.address\_verification.request.**zip**<br /><br />string<br /><br />Conditionally returned                              | United States ZIP code of the address.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| data\[].funding.gateway\_log.response.data.jit\_funding.**jit\_account\_name\_verification**<br /><br />object<br /><br />Conditionally returned                               | Contains account name verification data used to make JIT Funding decisions from one of the following objects:<br /><br />- The <code>gateway</code> object, which contains account name verification data from your JIT Funding gateway.<br />- The <code>issuer</code> object, which contains account name verification data from the Marqeta platform.<br />- The <code>request</code> object, which contains account name verification data as it appears in a JIT Funding request.<br /><br />**Allowable Values:**<br /><br /><code>gateway</code>, <code>issuer</code>, <code>request</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| data\[].funding.gateway\_log.response.data.jit\_funding.jit\_account\_name\_verification.**gateway**<br /><br />object<br /><br />Conditionally returned                       | Contains account name verification data used to make JIT Funding decisions.<br /><br />**Allowable Values:**<br /><br /><code>first\_name</code>, <code>last\_name</code>, <code>middle\_name</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| data\[].funding.gateway\_log.response.data.jit\_funding.jit\_account\_name\_verification.**issuer**<br /><br />object<br /><br />Conditionally returned                        | Contains account name verification data used to make JIT Funding decisions.<br /><br />**Allowable Values:**<br /><br /><code>first\_name</code>, <code>last\_name</code>, <code>middle\_name</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| data\[].funding.gateway\_log.response.data.jit\_funding.jit\_account\_name\_verification.**request**<br /><br />object<br /><br />Conditionally returned                       | Contains account name verification data used to make JIT Funding decisions.<br /><br />**Allowable Values:**<br /><br /><code>first\_name</code>, <code>last\_name</code>, <code>middle\_name</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| data\[].funding.gateway\_log.response.data.jit\_funding.**amount**<br /><br />decimal<br /><br />Returned                                                                      | Requested amount of funding.<br /><br />**Allowable Values:**<br /><br />0 min<br /><br />**Format:**<br />0.00                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| data\[].funding.gateway\_log.response.data.jit\_funding.**balances**<br /><br />object<br /><br />Conditionally returned                                                       | Contains the GPA’s balance details.<br /><br />**Allowable Values:**<br /><br /><code>available\_balance</code>, <code>balances</code>, <code>cached\_balance</code>, <code>credit\_balance</code>, <code>currency\_code</code>, <code>impacted\_amount</code>, <code>last\_updated\_time</code>, <code>ledger\_balance</code>, <code>pending\_credits</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| data\[].funding.gateway\_log.response.data.jit\_funding.**business\_token**<br /><br />string<br /><br />Conditionally returned                                                | Holder of the business account that was funded.<br /><br />**Allowable Values:**<br /><br />36 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| data\[].funding.gateway\_log.response.data.jit\_funding.**decline\_reason**<br /><br />string<br /><br />Conditionally returned                                                | Reason why the transaction was declined.<br /><br />**Allowable Values:**<br /><br /><code>AMOUNT\_LIMIT\_EXCEEDED</code>, <code>BLOCKED\_BY\_CARDHOLDER</code>, <code>BLOCKED\_BY\_ISSUER</code>, <code>BLOCKED\_MERCHANT\_BY\_CARDHOLDER</code>, <code>CARD\_NOT\_ACTIVE</code>, <code>CARDHOLDER\_NOT\_ACTIVE</code>, <code>CLOSED\_ACCOUNT</code>, <code>DUPLICATE\_TRANSACTION</code>, <code>EXPIRED\_CARD</code>, <code>INSUFFICIENT\_FUNDS</code>, <code>INVALID\_AMOUNT</code>, <code>INVALID\_CARD</code>, <code>INVALID\_MERCHANT</code>, <code>NO\_CHECKING\_ACCOUNT</code>, <code>NO\_CREDIT\_ACCOUNT</code>, <code>NO\_SAVINGS\_ACCOUNT</code>, <code>REVOCATION\_ALL\_AUTHORIZATION\_ORDER</code>, <code>REVOCATION\_AUTHORIZATION\_ORDER</code>, <code>SOFT\_DECLINE\_AUTHENTICATION\_REQUIRED</code>, <code>SOFT\_DECLINE\_PIN\_REQUIRED</code>, <code>STOP\_PAYMENT</code>, <code>SUSPECTED\_FRAUD</code>, <code>TRANSACTION\_COUNT\_LIMIT\_EXCEEDED</code>, <code>TRANSACTION\_NOT\_PERMITTED</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| data\[].funding.gateway\_log.response.data.jit\_funding.**incremental\_authorization\_jit\_funding\_tokens**<br /><br />array of strings<br /><br />Conditionally returned     | Array of tokens referencing the JIT Funding tokens of all previous associated incremental authorization JIT Funding requests. Useful for ascertaining the final transaction amount when the original amount was incremented.<br /><br />**Allowable Values:**<br /><br />Existing incremental authorization JIT Funding tokens                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| data\[].funding.gateway\_log.response.data.jit\_funding.**memo**<br /><br />string<br /><br />Conditionally returned                                                           | Additional information that describes the JIT Funding transaction.<br /><br />**Allowable Values:**<br /><br />99 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| data\[].funding.gateway\_log.response.data.jit\_funding.**method**<br /><br />string<br /><br />Returned                                                                       | JIT Funding response type. See <a href="/core-api/gateway-jit-funding-messages/#_the_jit_funding_object">The jit\_funding object</a> for the purpose, funding event type, and description of each method.<br /><br />**Allowable Values:**<br /><br /><code>pgfs.adjustment.credit</code>, <code>pgfs.adjustment.debit</code>, <code>pgfs.authorization</code>, <code>pgfs.authorization.account\_verification</code>, <code>pgfs.authorization.capture</code>, <code>pgfs.authorization.capture.chargeback</code>, <code>pgfs.authorization.capture.chargeback.reversal</code>, <code>pgfs.authorization.incremental</code>, <code>pgfs.authorization.reversal</code>, <code>pgfs.authorization.standin</code>, <code>pgfs.auth\_plus\_capture</code>, <code>pgfs.auth\_plus\_capture.standin</code>, <code>pgfs.balanceinquiry</code>, <code>pgfs.billpayment</code>, <code>pgfs.billpayment.capture</code>, <code>pgfs.billpayment.reversal</code>, <code>pgfs.directdeposit.credit</code>, <code>pgfs.directdeposit.credit.reversal</code>, <code>pgfs.directdeposit.debit</code>, <code>pgfs.directdeposit.debit.reversal</code>, <code>pgfs.dispute.credit</code>, <code>pgfs.dispute.debit</code>, <code>pgfs.force\_capture</code>, <code>pgfs.network.load</code>, <code>pgfs.original.credit.authorization</code>, <code>pgfs.original.credit.auth\_plus\_capture</code>, <code>pgfs.pindebit.chargeback</code>, <code>pgfs.pindebit.chargeback.reversal</code>, <code>pgfs.product.inquiry</code>, <code>pgfs.refund</code>, <code>pgfs.refund.authorization</code>, <code>pgfs.refund.authorization.reversal</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| data\[].funding.gateway\_log.response.data.jit\_funding.**original\_jit\_funding\_token**<br /><br />string<br /><br />Conditionally returned                                  | Unique identifier of the first associated JIT Funding message. Useful for correlating related JIT Funding messages (that is, those associated with the same GPA order). Not included in the first of any set of related messages.<br /><br />**Allowable Values:**<br /><br />36 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| data\[].funding.gateway\_log.response.data.jit\_funding.**tags**<br /><br />string<br /><br />Conditionally returned                                                           | Customer-defined tags related to the JIT Funding transaction.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| data\[].funding.gateway\_log.response.data.jit\_funding.**token**<br /><br />string<br /><br />Returned                                                                        | Existing JIT Funding token matching the <code>funding.gateway\_log.transaction\_id</code> field of the associated GPA order.<br /><br />**NOTE:** The <code>transaction\_id</code> field updates if a subsequent JIT Funding message associated with that GPA order is sent. If multiple JIT Funding messages are associated with the same GPA order, the <code>transaction\_id</code> field matches the token of the most recent message.<br /><br />**Allowable Values:**<br /><br />36 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| data\[].funding.gateway\_log.response.data.jit\_funding.**user\_token**<br /><br />string<br /><br />Returned                                                                  | Holder of the user account that was funded.<br /><br />**Allowable Values:**<br /><br />36 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| data\[].funding.gateway\_log.response.data.**flex**<br /><br />object<br /><br />Conditionally returned                                                                        | Contains information about a Flexible Credential transaction.<br /><br />**Allowable Values:**<br /><br /><code>action</code>, <code>eligible</code>, <code>eligible\_products</code>, <code>secondary\_credential\_identifier</code>, <code>selected\_product</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| data\[].funding.gateway\_log.response.data.flex.**action**<br /><br />string<br /><br />Conditionally returned                                                                 | Indicates whether the Flexible Credential transaction object is actionable (<code>inquiry</code>) or merely informative (<code>advice</code>).<br /><br />**Allowable Values:**<br /><br /><code>inquiry</code>, <code>advice</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| data\[].funding.gateway\_log.response.data.flex.**eligible**<br /><br />string<br /><br />Conditionally returned                                                               | Indicates whether or not the transaction is eligible for Flexible Credential transactions.<br /><br />**Allowable Values:**<br /><br /><code>true</code>, <code>false</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| data\[].funding.gateway\_log.response.data.flex.**eligible\_products**<br /><br />array of strings<br /><br />Conditionally returned                                           | Specifies which of the payment instrument’s credentials is eligible for this transaction:<br /><br />- A value of <code>DEBIT</code> indicates the primary credential.<br />- A value of <code>LOAN</code> indicates the secondary credential.<br /><br />**Allowable Values:**<br /><br /><code>DEBIT</code>, <code>LOAN</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| data\[].funding.gateway\_log.response.data.flex.**secondary\_credential\_identifier**<br /><br />string<br /><br />Conditionally returned                                      | Identifies the secondary credential used in the transaction, if applicable.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| data\[].funding.gateway\_log.response.data.flex.**selected\_product**<br /><br />string<br /><br />Conditionally returned                                                      | Indicates the eligible product that was used in the transaction.<br /><br />**Allowable Values:**<br /><br /><code>DEBIT</code>, <code>LOAN</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| data\[].funding.gateway\_log.**timed\_out**<br /><br />boolean<br /><br />Conditionally returned                                                                               | Whether the gateway sent a response (<code>true</code>) or timed out (<code>false</code>).<br /><br />**Allowable Values:**<br /><br /><code>true</code>, <code>false</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| data\[].funding.gateway\_log.**transaction\_id**<br /><br />string<br /><br />Returned                                                                                         | Customer-defined identifier for the transaction.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| data\[].funding.**source**<br /><br />object<br /><br />Returned                                                                                                               | Contains funding source information for the transaction, including the funding type and time.<br /><br />**Allowable Values:**<br /><br /><code>active</code>, <code>created\_time</code>, <code>is\_default\_account</code>, <code>last\_modified\_time</code>, <code>token</code>, <code>type</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| data\[].funding.source.**active**<br /><br />boolean<br /><br />Returned                                                                                                       | Whether the funding source is active.<br /><br />**Allowable Values:**<br /><br /><code>true</code>, <code>false</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| data\[].funding.source.**created\_time**<br /><br />datetime<br /><br />Returned                                                                                               | Date and time when the funding source was created, in UTC.<br /><br />**Allowable Values:**<br /><br />datetime<br /><br />**Format:**<br />yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| data\[].funding.source.**is\_default\_account**<br /><br />boolean<br /><br />Returned                                                                                         | Whether the GPA order unload’s funding source is the default funding account.<br /><br />**Allowable Values:**<br /><br /><code>true</code>, <code>false</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| data\[].funding.source.**last\_modified\_time**<br /><br />datetime<br /><br />Returned                                                                                        | Date and time when the funding source was last modified, in UTC.<br /><br />**Allowable Values:**<br /><br />datetime<br /><br />**Format:**<br />yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| data\[].funding.source.**token**<br /><br />string<br /><br />Returned                                                                                                         | Unique identifier of the funding source.<br /><br />**Allowable Values:**<br /><br />Format: UUID                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| data\[].funding.source.**type**<br /><br />string<br /><br />Returned                                                                                                          | Funding type of the funding source.<br /><br />**Allowable Values:**<br /><br /><code>ach</code>, <code>paymentcard</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| data\[].funding.**source\_address**<br /><br />object<br /><br />Conditionally returned                                                                                        | Contains information about the billing address of the funding source.<br /><br />**Allowable Values:**<br /><br /><code>active</code>, <code>address\_1</code>, <code>address\_2</code>, <code>business\_token</code>, <code>city</code>, <code>country</code>, <code>created\_time</code>, <code>first\_name</code>, <code>is\_default\_address</code>, <code>last\_modified\_time</code>, <code>last\_name</code>, <code>phone</code>, <code>postal\_code</code>, <code>state</code>, <code>token</code>, <code>user\_token</code>, <code>zip</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| data\[].funding.source\_address.**active**<br /><br />boolean<br /><br />Conditionally returned                                                                                | Whether the address is active.<br /><br />**Allowable Values:**<br /><br /><code>true</code>, <code>false</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| data\[].funding.source\_address.**address\_1**<br /><br />string<br /><br />Returned                                                                                           | Street address of the funding source.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| data\[].funding.source\_address.**address\_2**<br /><br />string<br /><br />Conditionally returned                                                                             | Additional address information for the funding source.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| data\[].funding.source\_address.**business\_token**<br /><br />string<br /><br />Conditionally returned                                                                        | Unique identifier of the business account holder associated with the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| data\[].funding.source\_address.**city**<br /><br />string<br /><br />Returned                                                                                                 | City of the funding source.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| data\[].funding.source\_address.**country**<br /><br />string<br /><br />Returned                                                                                              | Country of the funding source.<br /><br />**Allowable Values:**<br /><br />1–40 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| data\[].funding.source\_address.**created\_time**<br /><br />datetime<br /><br />Returned                                                                                      | Date and time when the address was created, in UTC.<br /><br />**Allowable Values:**<br /><br />datetime<br /><br />**Format:**<br />yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| data\[].funding.source\_address.**first\_name**<br /><br />string<br /><br />Returned                                                                                          | First name of the account holder associated with the funding source.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| data\[].funding.source\_address.**is\_default\_address**<br /><br />boolean<br /><br />Conditionally returned                                                                  | Whether this address is the default address used by the funding source.<br /><br />**Allowable Values:**<br /><br /><code>true</code>, <code>false</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| data\[].funding.source\_address.**last\_modified\_time**<br /><br />datetime<br /><br />Returned                                                                               | Date and time when the address was last modified, in UTC.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />datetime<br /><br />**Format:**<br />yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| data\[].funding.source\_address.**last\_name**<br /><br />string<br /><br />Returned                                                                                           | Last name of the account holder associated with the funding source.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| data\[].funding.source\_address.**phone**<br /><br />string<br /><br />Conditionally returned                                                                                  | Phone number of the funding source.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| data\[].funding.source\_address.**postal\_code**<br /><br />string<br /><br />Returned                                                                                         | Postal code of the funding source.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| data\[].funding.source\_address.**state**<br /><br />string<br /><br />Returned                                                                                                | Two-character state, provincial, or territorial abbreviation.<br /><br />For the complete list, see <a href="/core-api/kyc-verification/#_valid_state_provincial_territorial_and_federal_abbreviations">Valid state, provincial, territorial, and federal abbreviations</a>.<br /><br />**Allowable Values:**<br /><br />2 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| data\[].funding.source\_address.**token**<br /><br />string<br /><br />Returned                                                                                                | Unique identifier of the <code>funding\_source\_address</code> object.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| data\[].funding.source\_address.**user\_token**<br /><br />string<br /><br />Conditionally returned                                                                            | Unique identifier of the user account holder associated with the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| data\[].funding.source\_address.**zip**<br /><br />string<br /><br />Returned                                                                                                  | United States ZIP code of the funding source.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| data\[].**funding\_source\_address\_token**<br /><br />string<br /><br />Conditionally returned                                                                                | Identifies the funding source used for this order.<br /><br />**Allowable Values:**<br /><br />Existing <code>funding\_source\_address</code> token.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| data\[].**funding\_source\_token**<br /><br />string<br /><br />Returned                                                                                                       | Identifies the funding source used for this order.<br /><br />**Allowable Values:**<br /><br />Existing <code>funding\_source</code> token                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| data\[].**jit\_funding**<br /><br />object<br /><br />Conditionally returned                                                                                                   | Contains information about the JIT Funding load event, in which funds are loaded into an account.<br /><br />This object is returned if your program uses JIT Funding.<br /><br />**Allowable Values:**<br /><br /><code>acting\_user\_token</code>, <code>address\_verification</code>, <code>amount</code>, <code>balances</code>, <code>business\_token</code>, <code>decline\_reason</code>, <code>incremental\_authorization\_jit\_funding\_tokens</code>, <code>memo</code>, <code>method</code>, <code>original\_jit\_funding\_token</code>, <code>tags</code>, <code>token</code>, <code>user\_token</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| data\[].jit\_funding.**acting\_user\_token**<br /><br />string<br /><br />Conditionally returned                                                                               | User who conducted the transaction.<br /><br />Can be a child user configured to share its parent’s account balance.<br /><br />**Allowable Values:**<br /><br />36 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| data\[].jit\_funding.**address\_verification**<br /><br />object<br /><br />Conditionally returned                                                                             | Contains address verification data used to make JIT Funding decisions.<br /><br />**Allowable Values:**<br /><br /><code>gateway</code>, <code>issuer</code>, <code>request</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| data\[].jit\_funding.address\_verification.**gateway**<br /><br />object<br /><br />Conditionally returned                                                                     | Contains address verification data consisting of address data entered by the cardholder, address data held by the Marqeta platform, and an assertion by the Marqeta platform as to whether the two sets of data match.<br /><br />**Allowable Values:**<br /><br /><code>on\_file</code>, <code>response</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| data\[].jit\_funding.address\_verification.gateway.**on\_file**<br /><br />object<br /><br />Conditionally returned                                                            | Contains address verification information.<br /><br />**Allowable Values:**<br /><br /><code>postal\_code</code>, <code>street\_address</code>, <code>zip</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| data\[].jit\_funding.address\_verification.gateway.on\_file.**postal\_code**<br /><br />string<br /><br />Conditionally returned                                               | Postal code of the address.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| data\[].jit\_funding.address\_verification.gateway.on\_file.**street\_address**<br /><br />string<br /><br />Conditionally returned                                            | Street name and number of the address.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| data\[].jit\_funding.address\_verification.gateway.on\_file.**zip**<br /><br />string<br /><br />Conditionally returned                                                        | United States ZIP code of the address.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| data\[].jit\_funding.address\_verification.gateway.**response**<br /><br />object<br /><br />Conditionally returned                                                            | Response codes and memos for account name verification, address verification, card security verification, and transactions.<br /><br />**Allowable Values:**<br /><br /><code>additional\_information</code>, <code>code</code>, <code>memo</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| data\[].jit\_funding.address\_verification.gateway.response.**additional\_information**<br /><br />string<br /><br />Conditionally returned                                    | Additional information about the transaction, such as velocity control details.<br /><br />This field is returned in transaction response objects only. It is not returned in address verification or card security verification response objects.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| data\[].jit\_funding.address\_verification.gateway.response.**code**<br /><br />string<br /><br />Returned                                                                     | Four-digit response code for address verification, card security code verification, or transactions.<br /><br />For account name verification, the four digits correspond with assertions that the first, middle, last, and full name of the cardholder on the Marqeta platform match the data provided by the cardholder.<br /><br />- <code>0</code> indicates no validation was performed<br />- <code>1</code> indicates the match was unsuccessful (not matched)<br />- <code>2</code> indicates the match was partial<br />- <code>3</code> indicates the match was exact<br /><br />For example:<br /><br />Code / First Name / Middle Name / Last Name / Full Name<br /><code>0000</code> / Not validated / Not validated / Not validated / Not validated<br /><code>1111</code> / Not matched / Not matched / Not matched / Not matched<br /><code>3333</code> / Exact match / Exact match / Exact match / Exact match<br /><code>1232</code> / Not matched / Partial match / Exact match / Partial match<br /><br />For address verification responses, the code is an assertion by the Marqeta platform as to whether its address verification data matches that provided by the cardholder:<br /><br />Code / Address / Postal Code<br /><code>0000</code> / Match / Match<br /><code>0001</code> / Match / Not matched<br /><code>0100</code> / Not matched / Match<br /><code>0101</code> / Not matched / Not matched<br /><code>0200</code> / Data not present / Match<br /><code>0201</code> / Data not present / Not matched<br /><code>0002</code> / Match / Data not present<br /><code>0102</code> / Not matched / Data not present<br /><code>0303</code> / Not validated / Not validated<br /><br />For card security verification, the code indicates whether the verification check passed and can have these possible values:<br /><br />- <code>0000</code> – Passed<br />- <code>0001</code> – Did not pass<br /><br />For a transaction, the code describes the outcome of the attempted transaction. For the full list of transaction codes, see <a href="/developer-guides/about-transactions/#_transaction_response_codes">Transaction response codes</a>.<br /><br />**Allowable Values:**<br /><br />Four-digit code |
| data\[].jit\_funding.address\_verification.gateway.response.**memo**<br /><br />string<br /><br />Returned                                                                     | Additional text that describes the response.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| data\[].jit\_funding.address\_verification.**issuer**<br /><br />object<br /><br />Conditionally returned                                                                      | Contains address verification data consisting of address data entered by the cardholder, address data held by the Marqeta platform, and an assertion by the Marqeta platform as to whether the two sets of data match.<br /><br />**Allowable Values:**<br /><br /><code>on\_file</code>, <code>response</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| data\[].jit\_funding.address\_verification.issuer.**on\_file**<br /><br />object<br /><br />Conditionally returned                                                             | Contains address verification information.<br /><br />**Allowable Values:**<br /><br /><code>postal\_code</code>, <code>street\_address</code>, <code>zip</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| data\[].jit\_funding.address\_verification.issuer.on\_file.**postal\_code**<br /><br />string<br /><br />Conditionally returned                                                | Postal code of the address.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| data\[].jit\_funding.address\_verification.issuer.on\_file.**street\_address**<br /><br />string<br /><br />Conditionally returned                                             | Street name and number of the address.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| data\[].jit\_funding.address\_verification.issuer.on\_file.**zip**<br /><br />string<br /><br />Conditionally returned                                                         | United States ZIP code of the address.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| data\[].jit\_funding.address\_verification.issuer.**response**<br /><br />object<br /><br />Conditionally returned                                                             | Response codes and memos for account name verification, address verification, card security verification, and transactions.<br /><br />**Allowable Values:**<br /><br /><code>additional\_information</code>, <code>code</code>, <code>memo</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| data\[].jit\_funding.address\_verification.issuer.response.**additional\_information**<br /><br />string<br /><br />Conditionally returned                                     | Additional information about the transaction, such as velocity control details.<br /><br />This field is returned in transaction response objects only. It is not returned in address verification or card security verification response objects.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| data\[].jit\_funding.address\_verification.issuer.response.**code**<br /><br />string<br /><br />Returned                                                                      | Four-digit response code for address verification, card security code verification, or transactions.<br /><br />For account name verification, the four digits correspond with assertions that the first, middle, last, and full name of the cardholder on the Marqeta platform match the data provided by the cardholder.<br /><br />- <code>0</code> indicates no validation was performed<br />- <code>1</code> indicates the match was unsuccessful (not matched)<br />- <code>2</code> indicates the match was partial<br />- <code>3</code> indicates the match was exact<br /><br />For example:<br /><br />Code / First Name / Middle Name / Last Name / Full Name<br /><code>0000</code> / Not validated / Not validated / Not validated / Not validated<br /><code>1111</code> / Not matched / Not matched / Not matched / Not matched<br /><code>3333</code> / Exact match / Exact match / Exact match / Exact match<br /><code>1232</code> / Not matched / Partial match / Exact match / Partial match<br /><br />For address verification responses, the code is an assertion by the Marqeta platform as to whether its address verification data matches that provided by the cardholder:<br /><br />Code / Address / Postal Code<br /><code>0000</code> / Match / Match<br /><code>0001</code> / Match / Not matched<br /><code>0100</code> / Not matched / Match<br /><code>0101</code> / Not matched / Not matched<br /><code>0200</code> / Data not present / Match<br /><code>0201</code> / Data not present / Not matched<br /><code>0002</code> / Match / Data not present<br /><code>0102</code> / Not matched / Data not present<br /><code>0303</code> / Not validated / Not validated<br /><br />For card security verification, the code indicates whether the verification check passed and can have these possible values:<br /><br />- <code>0000</code> – Passed<br />- <code>0001</code> – Did not pass<br /><br />For a transaction, the code describes the outcome of the attempted transaction. For the full list of transaction codes, see <a href="/developer-guides/about-transactions/#_transaction_response_codes">Transaction response codes</a>.<br /><br />**Allowable Values:**<br /><br />Four-digit code |
| data\[].jit\_funding.address\_verification.issuer.response.**memo**<br /><br />string<br /><br />Returned                                                                      | Additional text that describes the response.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| data\[].jit\_funding.address\_verification.**request**<br /><br />object<br /><br />Conditionally returned                                                                     | Contains address verification information.<br /><br />**Allowable Values:**<br /><br /><code>postal\_code</code>, <code>street\_address</code>, <code>zip</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| data\[].jit\_funding.address\_verification.request.**postal\_code**<br /><br />string<br /><br />Conditionally returned                                                        | Postal code of the address.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| data\[].jit\_funding.address\_verification.request.**street\_address**<br /><br />string<br /><br />Conditionally returned                                                     | Street name and number of the address.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| data\[].jit\_funding.address\_verification.request.**zip**<br /><br />string<br /><br />Conditionally returned                                                                 | United States ZIP code of the address.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| data\[].jit\_funding.**jit\_account\_name\_verification**<br /><br />object<br /><br />Conditionally returned                                                                  | Contains account name verification data used to make JIT Funding decisions from one of the following objects:<br /><br />- The <code>gateway</code> object, which contains account name verification data from your JIT Funding gateway.<br />- The <code>issuer</code> object, which contains account name verification data from the Marqeta platform.<br />- The <code>request</code> object, which contains account name verification data as it appears in a JIT Funding request.<br /><br />**Allowable Values:**<br /><br /><code>gateway</code>, <code>issuer</code>, <code>request</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| data\[].jit\_funding.jit\_account\_name\_verification.**gateway**<br /><br />object<br /><br />Conditionally returned                                                          | Contains account name verification data used to make JIT Funding decisions.<br /><br />**Allowable Values:**<br /><br /><code>first\_name</code>, <code>last\_name</code>, <code>middle\_name</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| data\[].jit\_funding.jit\_account\_name\_verification.**issuer**<br /><br />object<br /><br />Conditionally returned                                                           | Contains account name verification data used to make JIT Funding decisions.<br /><br />**Allowable Values:**<br /><br /><code>first\_name</code>, <code>last\_name</code>, <code>middle\_name</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| data\[].jit\_funding.jit\_account\_name\_verification.**request**<br /><br />object<br /><br />Conditionally returned                                                          | Contains account name verification data used to make JIT Funding decisions.<br /><br />**Allowable Values:**<br /><br /><code>first\_name</code>, <code>last\_name</code>, <code>middle\_name</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| data\[].jit\_funding.**amount**<br /><br />decimal<br /><br />Returned                                                                                                         | Requested amount of funding.<br /><br />**Allowable Values:**<br /><br />0 min<br /><br />**Format:**<br />0.00                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| data\[].jit\_funding.**balances**<br /><br />object<br /><br />Conditionally returned                                                                                          | Contains the GPA’s balance details.<br /><br />**Allowable Values:**<br /><br /><code>available\_balance</code>, <code>balances</code>, <code>cached\_balance</code>, <code>credit\_balance</code>, <code>currency\_code</code>, <code>impacted\_amount</code>, <code>last\_updated\_time</code>, <code>ledger\_balance</code>, <code>pending\_credits</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| data\[].jit\_funding.**business\_token**<br /><br />string<br /><br />Conditionally returned                                                                                   | Holder of the business account that was funded.<br /><br />**Allowable Values:**<br /><br />36 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| data\[].jit\_funding.**decline\_reason**<br /><br />string<br /><br />Conditionally returned                                                                                   | Reason why the transaction was declined.<br /><br />**Allowable Values:**<br /><br /><code>AMOUNT\_LIMIT\_EXCEEDED</code>, <code>BLOCKED\_BY\_CARDHOLDER</code>, <code>BLOCKED\_BY\_ISSUER</code>, <code>BLOCKED\_MERCHANT\_BY\_CARDHOLDER</code>, <code>CARD\_NOT\_ACTIVE</code>, <code>CARDHOLDER\_NOT\_ACTIVE</code>, <code>CLOSED\_ACCOUNT</code>, <code>DUPLICATE\_TRANSACTION</code>, <code>EXPIRED\_CARD</code>, <code>INSUFFICIENT\_FUNDS</code>, <code>INVALID\_AMOUNT</code>, <code>INVALID\_CARD</code>, <code>INVALID\_MERCHANT</code>, <code>NO\_CHECKING\_ACCOUNT</code>, <code>NO\_CREDIT\_ACCOUNT</code>, <code>NO\_SAVINGS\_ACCOUNT</code>, <code>REVOCATION\_ALL\_AUTHORIZATION\_ORDER</code>, <code>REVOCATION\_AUTHORIZATION\_ORDER</code>, <code>SOFT\_DECLINE\_AUTHENTICATION\_REQUIRED</code>, <code>SOFT\_DECLINE\_PIN\_REQUIRED</code>, <code>STOP\_PAYMENT</code>, <code>SUSPECTED\_FRAUD</code>, <code>TRANSACTION\_COUNT\_LIMIT\_EXCEEDED</code>, <code>TRANSACTION\_NOT\_PERMITTED</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| data\[].jit\_funding.**incremental\_authorization\_jit\_funding\_tokens**<br /><br />array of strings<br /><br />Conditionally returned                                        | Array of tokens referencing the JIT Funding tokens of all previous associated incremental authorization JIT Funding requests. Useful for ascertaining the final transaction amount when the original amount was incremented.<br /><br />**Allowable Values:**<br /><br />Existing incremental authorization JIT Funding tokens                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| data\[].jit\_funding.**memo**<br /><br />string<br /><br />Conditionally returned                                                                                              | Additional information that describes the JIT Funding transaction.<br /><br />**Allowable Values:**<br /><br />99 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| data\[].jit\_funding.**method**<br /><br />string<br /><br />Returned                                                                                                          | JIT Funding response type. See <a href="/core-api/gateway-jit-funding-messages/#_the_jit_funding_object">The jit\_funding object</a> for the purpose, funding event type, and description of each method.<br /><br />**Allowable Values:**<br /><br /><code>pgfs.adjustment.credit</code>, <code>pgfs.adjustment.debit</code>, <code>pgfs.authorization</code>, <code>pgfs.authorization.account\_verification</code>, <code>pgfs.authorization.capture</code>, <code>pgfs.authorization.capture.chargeback</code>, <code>pgfs.authorization.capture.chargeback.reversal</code>, <code>pgfs.authorization.incremental</code>, <code>pgfs.authorization.reversal</code>, <code>pgfs.authorization.standin</code>, <code>pgfs.auth\_plus\_capture</code>, <code>pgfs.auth\_plus\_capture.standin</code>, <code>pgfs.balanceinquiry</code>, <code>pgfs.billpayment</code>, <code>pgfs.billpayment.capture</code>, <code>pgfs.billpayment.reversal</code>, <code>pgfs.directdeposit.credit</code>, <code>pgfs.directdeposit.credit.reversal</code>, <code>pgfs.directdeposit.debit</code>, <code>pgfs.directdeposit.debit.reversal</code>, <code>pgfs.dispute.credit</code>, <code>pgfs.dispute.debit</code>, <code>pgfs.force\_capture</code>, <code>pgfs.network.load</code>, <code>pgfs.original.credit.authorization</code>, <code>pgfs.original.credit.auth\_plus\_capture</code>, <code>pgfs.pindebit.chargeback</code>, <code>pgfs.pindebit.chargeback.reversal</code>, <code>pgfs.product.inquiry</code>, <code>pgfs.refund</code>, <code>pgfs.refund.authorization</code>, <code>pgfs.refund.authorization.reversal</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| data\[].jit\_funding.**original\_jit\_funding\_token**<br /><br />string<br /><br />Conditionally returned                                                                     | Unique identifier of the first associated JIT Funding message. Useful for correlating related JIT Funding messages (that is, those associated with the same GPA order). Not included in the first of any set of related messages.<br /><br />**Allowable Values:**<br /><br />36 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| data\[].jit\_funding.**tags**<br /><br />string<br /><br />Conditionally returned                                                                                              | Customer-defined tags related to the JIT Funding transaction.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| data\[].jit\_funding.**token**<br /><br />string<br /><br />Returned                                                                                                           | Existing JIT Funding token matching the <code>funding.gateway\_log.transaction\_id</code> field of the associated GPA order.<br /><br />**NOTE:** The <code>transaction\_id</code> field updates if a subsequent JIT Funding message associated with that GPA order is sent. If multiple JIT Funding messages are associated with the same GPA order, the <code>transaction\_id</code> field matches the token of the most recent message.<br /><br />**Allowable Values:**<br /><br />36 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| data\[].jit\_funding.**user\_token**<br /><br />string<br /><br />Returned                                                                                                     | Holder of the user account that was funded.<br /><br />**Allowable Values:**<br /><br />36 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| data\[].**last\_modified\_time**<br /><br />datetime<br /><br />Returned                                                                                                       | Date and time when the GPA unload order was last modified, in UTC.<br /><br />**Allowable Values:**<br /><br />datetime<br /><br />**Format:**<br />yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| data\[].**memo**<br /><br />string<br /><br />Conditionally returned                                                                                                           | Additional descriptive text.<br /><br />**Allowable Values:**<br /><br />99 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| data\[].**original\_order\_token**<br /><br />string<br /><br />Conditionally returned                                                                                         | Identifies the original GPA order.<br /><br />**Allowable Values:**<br /><br />Existing GPA order token                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| data\[].**response**<br /><br />object<br /><br />Returned                                                                                                                     | Response codes and memos for account name verification, address verification, card security verification, and transactions.<br /><br />**Allowable Values:**<br /><br /><code>additional\_information</code>, <code>code</code>, <code>memo</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| data\[].response.**additional\_information**<br /><br />string<br /><br />Conditionally returned                                                                               | Additional information about the transaction, such as velocity control details.<br /><br />This field is returned in transaction response objects only. It is not returned in address verification or card security verification response objects.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| data\[].response.**code**<br /><br />string<br /><br />Returned                                                                                                                | Four-digit response code for address verification, card security code verification, or transactions.<br /><br />For account name verification, the four digits correspond with assertions that the first, middle, last, and full name of the cardholder on the Marqeta platform match the data provided by the cardholder.<br /><br />- <code>0</code> indicates no validation was performed<br />- <code>1</code> indicates the match was unsuccessful (not matched)<br />- <code>2</code> indicates the match was partial<br />- <code>3</code> indicates the match was exact<br /><br />For example:<br /><br />Code / First Name / Middle Name / Last Name / Full Name<br /><code>0000</code> / Not validated / Not validated / Not validated / Not validated<br /><code>1111</code> / Not matched / Not matched / Not matched / Not matched<br /><code>3333</code> / Exact match / Exact match / Exact match / Exact match<br /><code>1232</code> / Not matched / Partial match / Exact match / Partial match<br /><br />For address verification responses, the code is an assertion by the Marqeta platform as to whether its address verification data matches that provided by the cardholder:<br /><br />Code / Address / Postal Code<br /><code>0000</code> / Match / Match<br /><code>0001</code> / Match / Not matched<br /><code>0100</code> / Not matched / Match<br /><code>0101</code> / Not matched / Not matched<br /><code>0200</code> / Data not present / Match<br /><code>0201</code> / Data not present / Not matched<br /><code>0002</code> / Match / Data not present<br /><code>0102</code> / Not matched / Data not present<br /><code>0303</code> / Not validated / Not validated<br /><br />For card security verification, the code indicates whether the verification check passed and can have these possible values:<br /><br />- <code>0000</code> – Passed<br />- <code>0001</code> – Did not pass<br /><br />For a transaction, the code describes the outcome of the attempted transaction. For the full list of transaction codes, see <a href="/developer-guides/about-transactions/#_transaction_response_codes">Transaction response codes</a>.<br /><br />**Allowable Values:**<br /><br />Four-digit code |
| data\[].response.**memo**<br /><br />string<br /><br />Returned                                                                                                                | Additional text that describes the response.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| data\[].**state**<br /><br />string<br /><br />Returned                                                                                                                        | Current status of the GPA unload order.<br /><br />**Allowable Values:**<br /><br /><code>PENDING</code>, <code>CLEARED</code>, <code>COMPLETION</code>, <code>DECLINED</code>, <code>ERROR</code>, <code>REVERSED</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| data\[].**tags**<br /><br />string<br /><br />Conditionally returned                                                                                                           | Comma-delimited list of tags describing the GPA order.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| data\[].**token**<br /><br />string<br /><br />Returned                                                                                                                        | Unique identifier of the GPA unload order.<br /><br />**Allowable Values:**<br /><br />Existing GPA unload order token                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| data\[].**transaction\_token**<br /><br />string<br /><br />Returned                                                                                                           | Unique identifier of the transaction.<br /><br />**Allowable Values:**<br /><br />Format: UUID                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| end\_index<br /><br />integer<br /><br />Conditionally returned                                                                                                                | Sort order index of the last resource in the returned array.<br /><br />This field is returned if there are resources in your returned array.<br /><br />**Allowable Values:**<br /><br />Any integer                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| is\_more<br /><br />boolean<br /><br />Conditionally returned                                                                                                                  | A value of <code>true</code> indicates that more unreturned resources exist. A value of <code>false</code> indicates that no more unreturned resources exist.<br /><br />This field is returned if there are resources in your returned array.<br /><br />**Allowable Values:**<br /><br /><code>true</code>, <code>false</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| start\_index<br /><br />integer<br /><br />Conditionally returned                                                                                                              | Sort order index of the first resource in the returned array.<br /><br />This field is returned if there are resources in your returned array.<br /><br />**Allowable Values:**<br /><br />Any integer                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |

<h3 id="_sample_response_body_4">
  Sample response body
</h3>

```json JSON expandable lines wrap theme={null}
{
  "count": 2,
  "start_index": 0,
  "end_index": 1,
  "is_more": false,
  "data[]": {
    "token": "my_unload_01",
    "amount": 500,
    "created_time": "2024-11-30T23:14:50Z",
    "last_modified_time": "2024-11-30T23:15:50Z",
    "transaction_token": "158",
    "state": "COMPLETION",
    "response": {
      "code": "0000",
      "memo": "Approved or completed successfully"
    },
    "funding": {
      "amount": 500,
      "source": {
        "type": "program",
        "token": "**********e_01",
        "active": true,
        "name": "my_program_funding_source_01",
        "is_default_account": false,
        "created_time": "2025-03-31T19:13:23Z",
        "last_modified_time": "2025-03-31T19:13:23Z"
      }
    },
    "funding_source_token": "**********e_01",
    "original_order_token": "my_gpaorder_01"
  }
}
```

<h2 id="get_gpaorders_unloads_unloadtoken">
  Retrieve GPA unload
</h2>

**Action:** `GET`\
**Endpoint:** `/gpaorders/unloads/{unload_token}`

{/* <EndpointCard
title="Retrieve GPA unload"
path="/gpaorders/unloads/{unload_token}"
method="get"
/> */}

Use this endpoint to retrieve a specific GPA unload.

<h3 id="_url_path_parameters_2">
  URL path parameters
</h3>

| Fields                                              | Description                                                                                                |
| --------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- |
| unload\_token<br /><br />string<br /><br />Required | Unique identifier of the GPA unload.<br /><br />**Allowable Values:**<br /><br />Existing GPA unload token |

<h3 id="_response_body_5">
  Response body
</h3>

| Fields                                                                                                                                                                 | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| amount<br /><br />decimal<br /><br />Returned                                                                                                                          | Amount of funds returned to the funding source.<br /><br />**Allowable Values:**<br /><br />decimal<br /><br />**Format:**<br />0.00                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| created\_time<br /><br />datetime<br /><br />Returned                                                                                                                  | Date and time when the GPA unload order was created, in UTC.<br /><br />**Allowable Values:**<br /><br />datetime<br /><br />**Format:**<br />yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| funding<br /><br />object<br /><br />Returned                                                                                                                          | Contains funding information for the transaction, including funding amount, type, and time.<br /><br />**Allowable Values:**<br /><br /><code>amount</code>, <code>gateway\_log</code>, <code>source</code>, <code>source\_address</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| funding.**amount**<br /><br />decimal<br /><br />Conditionally returned                                                                                                | Amount of funds loaded into the GPA.<br /><br />**Allowable Values:**<br /><br />decimal<br /><br />**Format:**<br />0.00                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| funding.**gateway\_log**<br /><br />object<br /><br />Conditionally returned                                                                                           | Contains information from the JIT Funding gateway in response to a funding request.<br /><br />**Allowable Values:**<br /><br /><code>duration</code>, <code>message</code>, <code>order\_number</code>, <code>response</code>, <code>timed\_out</code>, <code>transaction\_id</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| funding.gateway\_log.**duration**<br /><br />integer<br /><br />Conditionally returned                                                                                 | Length of time in milliseconds that the gateway took to respond to a funding request.<br /><br />**Allowable Values:**<br /><br />Any integer                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| funding.gateway\_log.**message**<br /><br />string<br /><br />Returned                                                                                                 | Message about the status of the funding request. Useful for determining whether it was approved and completed successfully, declined by the gateway, or timed out.<br /><br />**Allowable Values:**<br /><br /><code>Approved or completed successfully</code>, <code>Declined by gateway</code>, <code>Operation timeout</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| funding.gateway\_log.**order\_number**<br /><br />string<br /><br />Returned                                                                                           | Customer order number, same value as <code>transaction.token</code>.<br /><br />**Allowable Values:**<br /><br />Existing <code>transaction.token</code> value                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| funding.gateway\_log.**response**<br /><br />object<br /><br />Conditionally returned                                                                                  | Contains information from the gateway in response to a funding request.<br /><br />**Allowable Values:**<br /><br /><code>code</code>, <code>data</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| funding.gateway\_log.response.**code**<br /><br />string<br /><br />Returned                                                                                           | Code received from the gateway.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| funding.gateway\_log.response.**data**<br /><br />object<br /><br />Conditionally returned                                                                             | Contains the gateway’s information about the JIT Funding transaction.<br /><br />**Allowable Values:**<br /><br /><code>jit\_funding</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| funding.gateway\_log.response.data.**jit\_funding**<br /><br />object<br /><br />Returned                                                                              | Contains information about the JIT Funding load event, in which funds are loaded into an account.<br /><br />This object is returned if your program uses JIT Funding.<br /><br />**Allowable Values:**<br /><br /><code>acting\_user\_token</code>, <code>address\_verification</code>, <code>amount</code>, <code>balances</code>, <code>business\_token</code>, <code>decline\_reason</code>, <code>incremental\_authorization\_jit\_funding\_tokens</code>, <code>memo</code>, <code>method</code>, <code>original\_jit\_funding\_token</code>, <code>tags</code>, <code>token</code>, <code>user\_token</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| funding.gateway\_log.response.data.jit\_funding.**acting\_user\_token**<br /><br />string<br /><br />Conditionally returned                                            | User who conducted the transaction.<br /><br />Can be a child user configured to share its parent’s account balance.<br /><br />**Allowable Values:**<br /><br />36 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| funding.gateway\_log.response.data.jit\_funding.**address\_verification**<br /><br />object<br /><br />Conditionally returned                                          | Contains address verification data used to make JIT Funding decisions.<br /><br />**Allowable Values:**<br /><br /><code>gateway</code>, <code>issuer</code>, <code>request</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.**gateway**<br /><br />object<br /><br />Conditionally returned                                  | Contains address verification data consisting of address data entered by the cardholder, address data held by the Marqeta platform, and an assertion by the Marqeta platform as to whether the two sets of data match.<br /><br />**Allowable Values:**<br /><br /><code>on\_file</code>, <code>response</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.gateway.**on\_file**<br /><br />object<br /><br />Conditionally returned                         | Contains address verification information.<br /><br />**Allowable Values:**<br /><br /><code>postal\_code</code>, <code>street\_address</code>, <code>zip</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.gateway.on\_file.**postal\_code**<br /><br />string<br /><br />Conditionally returned            | Postal code of the address.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.gateway.on\_file.**street\_address**<br /><br />string<br /><br />Conditionally returned         | Street name and number of the address.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.gateway.on\_file.**zip**<br /><br />string<br /><br />Conditionally returned                     | United States ZIP code of the address.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.gateway.**response**<br /><br />object<br /><br />Conditionally returned                         | Response codes and memos for account name verification, address verification, card security verification, and transactions.<br /><br />**Allowable Values:**<br /><br /><code>additional\_information</code>, <code>code</code>, <code>memo</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.gateway.response.**additional\_information**<br /><br />string<br /><br />Conditionally returned | Additional information about the transaction, such as velocity control details.<br /><br />This field is returned in transaction response objects only. It is not returned in address verification or card security verification response objects.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.gateway.response.**code**<br /><br />string<br /><br />Returned                                  | Four-digit response code for address verification, card security code verification, or transactions.<br /><br />For account name verification, the four digits correspond with assertions that the first, middle, last, and full name of the cardholder on the Marqeta platform match the data provided by the cardholder.<br /><br />- <code>0</code> indicates no validation was performed<br />- <code>1</code> indicates the match was unsuccessful (not matched)<br />- <code>2</code> indicates the match was partial<br />- <code>3</code> indicates the match was exact<br /><br />For example:<br /><br />Code / First Name / Middle Name / Last Name / Full Name<br /><code>0000</code> / Not validated / Not validated / Not validated / Not validated<br /><code>1111</code> / Not matched / Not matched / Not matched / Not matched<br /><code>3333</code> / Exact match / Exact match / Exact match / Exact match<br /><code>1232</code> / Not matched / Partial match / Exact match / Partial match<br /><br />For address verification responses, the code is an assertion by the Marqeta platform as to whether its address verification data matches that provided by the cardholder:<br /><br />Code / Address / Postal Code<br /><code>0000</code> / Match / Match<br /><code>0001</code> / Match / Not matched<br /><code>0100</code> / Not matched / Match<br /><code>0101</code> / Not matched / Not matched<br /><code>0200</code> / Data not present / Match<br /><code>0201</code> / Data not present / Not matched<br /><code>0002</code> / Match / Data not present<br /><code>0102</code> / Not matched / Data not present<br /><code>0303</code> / Not validated / Not validated<br /><br />For card security verification, the code indicates whether the verification check passed and can have these possible values:<br /><br />- <code>0000</code> – Passed<br />- <code>0001</code> – Did not pass<br /><br />For a transaction, the code describes the outcome of the attempted transaction. For the full list of transaction codes, see <a href="/developer-guides/about-transactions/#_transaction_response_codes">Transaction response codes</a>.<br /><br />**Allowable Values:**<br /><br />Four-digit code |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.gateway.response.**memo**<br /><br />string<br /><br />Returned                                  | Additional text that describes the response.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.**issuer**<br /><br />object<br /><br />Conditionally returned                                   | Contains address verification data consisting of address data entered by the cardholder, address data held by the Marqeta platform, and an assertion by the Marqeta platform as to whether the two sets of data match.<br /><br />**Allowable Values:**<br /><br /><code>on\_file</code>, <code>response</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.issuer.**on\_file**<br /><br />object<br /><br />Conditionally returned                          | Contains address verification information.<br /><br />**Allowable Values:**<br /><br /><code>postal\_code</code>, <code>street\_address</code>, <code>zip</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.issuer.on\_file.**postal\_code**<br /><br />string<br /><br />Conditionally returned             | Postal code of the address.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.issuer.on\_file.**street\_address**<br /><br />string<br /><br />Conditionally returned          | Street name and number of the address.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.issuer.on\_file.**zip**<br /><br />string<br /><br />Conditionally returned                      | United States ZIP code of the address.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.issuer.**response**<br /><br />object<br /><br />Conditionally returned                          | Response codes and memos for account name verification, address verification, card security verification, and transactions.<br /><br />**Allowable Values:**<br /><br /><code>additional\_information</code>, <code>code</code>, <code>memo</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.issuer.response.**additional\_information**<br /><br />string<br /><br />Conditionally returned  | Additional information about the transaction, such as velocity control details.<br /><br />This field is returned in transaction response objects only. It is not returned in address verification or card security verification response objects.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.issuer.response.**code**<br /><br />string<br /><br />Returned                                   | Four-digit response code for address verification, card security code verification, or transactions.<br /><br />For account name verification, the four digits correspond with assertions that the first, middle, last, and full name of the cardholder on the Marqeta platform match the data provided by the cardholder.<br /><br />- <code>0</code> indicates no validation was performed<br />- <code>1</code> indicates the match was unsuccessful (not matched)<br />- <code>2</code> indicates the match was partial<br />- <code>3</code> indicates the match was exact<br /><br />For example:<br /><br />Code / First Name / Middle Name / Last Name / Full Name<br /><code>0000</code> / Not validated / Not validated / Not validated / Not validated<br /><code>1111</code> / Not matched / Not matched / Not matched / Not matched<br /><code>3333</code> / Exact match / Exact match / Exact match / Exact match<br /><code>1232</code> / Not matched / Partial match / Exact match / Partial match<br /><br />For address verification responses, the code is an assertion by the Marqeta platform as to whether its address verification data matches that provided by the cardholder:<br /><br />Code / Address / Postal Code<br /><code>0000</code> / Match / Match<br /><code>0001</code> / Match / Not matched<br /><code>0100</code> / Not matched / Match<br /><code>0101</code> / Not matched / Not matched<br /><code>0200</code> / Data not present / Match<br /><code>0201</code> / Data not present / Not matched<br /><code>0002</code> / Match / Data not present<br /><code>0102</code> / Not matched / Data not present<br /><code>0303</code> / Not validated / Not validated<br /><br />For card security verification, the code indicates whether the verification check passed and can have these possible values:<br /><br />- <code>0000</code> – Passed<br />- <code>0001</code> – Did not pass<br /><br />For a transaction, the code describes the outcome of the attempted transaction. For the full list of transaction codes, see <a href="/developer-guides/about-transactions/#_transaction_response_codes">Transaction response codes</a>.<br /><br />**Allowable Values:**<br /><br />Four-digit code |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.issuer.response.**memo**<br /><br />string<br /><br />Returned                                   | Additional text that describes the response.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.**request**<br /><br />object<br /><br />Conditionally returned                                  | Contains address verification information.<br /><br />**Allowable Values:**<br /><br /><code>postal\_code</code>, <code>street\_address</code>, <code>zip</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.request.**postal\_code**<br /><br />string<br /><br />Conditionally returned                     | Postal code of the address.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.request.**street\_address**<br /><br />string<br /><br />Conditionally returned                  | Street name and number of the address.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| funding.gateway\_log.response.data.jit\_funding.address\_verification.request.**zip**<br /><br />string<br /><br />Conditionally returned                              | United States ZIP code of the address.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| funding.gateway\_log.response.data.jit\_funding.**jit\_account\_name\_verification**<br /><br />object<br /><br />Conditionally returned                               | Contains account name verification data used to make JIT Funding decisions from one of the following objects:<br /><br />- The <code>gateway</code> object, which contains account name verification data from your JIT Funding gateway.<br />- The <code>issuer</code> object, which contains account name verification data from the Marqeta platform.<br />- The <code>request</code> object, which contains account name verification data as it appears in a JIT Funding request.<br /><br />**Allowable Values:**<br /><br /><code>gateway</code>, <code>issuer</code>, <code>request</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| funding.gateway\_log.response.data.jit\_funding.jit\_account\_name\_verification.**gateway**<br /><br />object<br /><br />Conditionally returned                       | Contains account name verification data used to make JIT Funding decisions.<br /><br />**Allowable Values:**<br /><br /><code>first\_name</code>, <code>last\_name</code>, <code>middle\_name</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| funding.gateway\_log.response.data.jit\_funding.jit\_account\_name\_verification.**issuer**<br /><br />object<br /><br />Conditionally returned                        | Contains account name verification data used to make JIT Funding decisions.<br /><br />**Allowable Values:**<br /><br /><code>first\_name</code>, <code>last\_name</code>, <code>middle\_name</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| funding.gateway\_log.response.data.jit\_funding.jit\_account\_name\_verification.**request**<br /><br />object<br /><br />Conditionally returned                       | Contains account name verification data used to make JIT Funding decisions.<br /><br />**Allowable Values:**<br /><br /><code>first\_name</code>, <code>last\_name</code>, <code>middle\_name</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| funding.gateway\_log.response.data.jit\_funding.**amount**<br /><br />decimal<br /><br />Returned                                                                      | Requested amount of funding.<br /><br />**Allowable Values:**<br /><br />0 min<br /><br />**Format:**<br />0.00                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| funding.gateway\_log.response.data.jit\_funding.**balances**<br /><br />object<br /><br />Conditionally returned                                                       | Contains the GPA’s balance details.<br /><br />**Allowable Values:**<br /><br /><code>available\_balance</code>, <code>balances</code>, <code>cached\_balance</code>, <code>credit\_balance</code>, <code>currency\_code</code>, <code>impacted\_amount</code>, <code>last\_updated\_time</code>, <code>ledger\_balance</code>, <code>pending\_credits</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| funding.gateway\_log.response.data.jit\_funding.**business\_token**<br /><br />string<br /><br />Conditionally returned                                                | Holder of the business account that was funded.<br /><br />**Allowable Values:**<br /><br />36 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| funding.gateway\_log.response.data.jit\_funding.**decline\_reason**<br /><br />string<br /><br />Conditionally returned                                                | Reason why the transaction was declined.<br /><br />**Allowable Values:**<br /><br /><code>AMOUNT\_LIMIT\_EXCEEDED</code>, <code>BLOCKED\_BY\_CARDHOLDER</code>, <code>BLOCKED\_BY\_ISSUER</code>, <code>BLOCKED\_MERCHANT\_BY\_CARDHOLDER</code>, <code>CARD\_NOT\_ACTIVE</code>, <code>CARDHOLDER\_NOT\_ACTIVE</code>, <code>CLOSED\_ACCOUNT</code>, <code>DUPLICATE\_TRANSACTION</code>, <code>EXPIRED\_CARD</code>, <code>INSUFFICIENT\_FUNDS</code>, <code>INVALID\_AMOUNT</code>, <code>INVALID\_CARD</code>, <code>INVALID\_MERCHANT</code>, <code>NO\_CHECKING\_ACCOUNT</code>, <code>NO\_CREDIT\_ACCOUNT</code>, <code>NO\_SAVINGS\_ACCOUNT</code>, <code>REVOCATION\_ALL\_AUTHORIZATION\_ORDER</code>, <code>REVOCATION\_AUTHORIZATION\_ORDER</code>, <code>SOFT\_DECLINE\_AUTHENTICATION\_REQUIRED</code>, <code>SOFT\_DECLINE\_PIN\_REQUIRED</code>, <code>STOP\_PAYMENT</code>, <code>SUSPECTED\_FRAUD</code>, <code>TRANSACTION\_COUNT\_LIMIT\_EXCEEDED</code>, <code>TRANSACTION\_NOT\_PERMITTED</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| funding.gateway\_log.response.data.jit\_funding.**incremental\_authorization\_jit\_funding\_tokens**<br /><br />array of strings<br /><br />Conditionally returned     | Array of tokens referencing the JIT Funding tokens of all previous associated incremental authorization JIT Funding requests. Useful for ascertaining the final transaction amount when the original amount was incremented.<br /><br />**Allowable Values:**<br /><br />Existing incremental authorization JIT Funding tokens                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| funding.gateway\_log.response.data.jit\_funding.**memo**<br /><br />string<br /><br />Conditionally returned                                                           | Additional information that describes the JIT Funding transaction.<br /><br />**Allowable Values:**<br /><br />99 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| funding.gateway\_log.response.data.jit\_funding.**method**<br /><br />string<br /><br />Returned                                                                       | JIT Funding response type. See <a href="/core-api/gateway-jit-funding-messages/#_the_jit_funding_object">The jit\_funding object</a> for the purpose, funding event type, and description of each method.<br /><br />**Allowable Values:**<br /><br /><code>pgfs.adjustment.credit</code>, <code>pgfs.adjustment.debit</code>, <code>pgfs.authorization</code>, <code>pgfs.authorization.account\_verification</code>, <code>pgfs.authorization.capture</code>, <code>pgfs.authorization.capture.chargeback</code>, <code>pgfs.authorization.capture.chargeback.reversal</code>, <code>pgfs.authorization.incremental</code>, <code>pgfs.authorization.reversal</code>, <code>pgfs.authorization.standin</code>, <code>pgfs.auth\_plus\_capture</code>, <code>pgfs.auth\_plus\_capture.standin</code>, <code>pgfs.balanceinquiry</code>, <code>pgfs.billpayment</code>, <code>pgfs.billpayment.capture</code>, <code>pgfs.billpayment.reversal</code>, <code>pgfs.directdeposit.credit</code>, <code>pgfs.directdeposit.credit.reversal</code>, <code>pgfs.directdeposit.debit</code>, <code>pgfs.directdeposit.debit.reversal</code>, <code>pgfs.dispute.credit</code>, <code>pgfs.dispute.debit</code>, <code>pgfs.force\_capture</code>, <code>pgfs.network.load</code>, <code>pgfs.original.credit.authorization</code>, <code>pgfs.original.credit.auth\_plus\_capture</code>, <code>pgfs.pindebit.chargeback</code>, <code>pgfs.pindebit.chargeback.reversal</code>, <code>pgfs.product.inquiry</code>, <code>pgfs.refund</code>, <code>pgfs.refund.authorization</code>, <code>pgfs.refund.authorization.reversal</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| funding.gateway\_log.response.data.jit\_funding.**original\_jit\_funding\_token**<br /><br />string<br /><br />Conditionally returned                                  | Unique identifier of the first associated JIT Funding message. Useful for correlating related JIT Funding messages (that is, those associated with the same GPA order). Not included in the first of any set of related messages.<br /><br />**Allowable Values:**<br /><br />36 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| funding.gateway\_log.response.data.jit\_funding.**tags**<br /><br />string<br /><br />Conditionally returned                                                           | Customer-defined tags related to the JIT Funding transaction.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| funding.gateway\_log.response.data.jit\_funding.**token**<br /><br />string<br /><br />Returned                                                                        | Existing JIT Funding token matching the <code>funding.gateway\_log.transaction\_id</code> field of the associated GPA order.<br /><br />**NOTE:** The <code>transaction\_id</code> field updates if a subsequent JIT Funding message associated with that GPA order is sent. If multiple JIT Funding messages are associated with the same GPA order, the <code>transaction\_id</code> field matches the token of the most recent message.<br /><br />**Allowable Values:**<br /><br />36 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| funding.gateway\_log.response.data.jit\_funding.**user\_token**<br /><br />string<br /><br />Returned                                                                  | Holder of the user account that was funded.<br /><br />**Allowable Values:**<br /><br />36 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| funding.gateway\_log.response.data.**flex**<br /><br />object<br /><br />Conditionally returned                                                                        | Contains information about a Flexible Credential transaction.<br /><br />**Allowable Values:**<br /><br /><code>action</code>, <code>eligible</code>, <code>eligible\_products</code>, <code>secondary\_credential\_identifier</code>, <code>selected\_product</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| funding.gateway\_log.response.data.flex.**action**<br /><br />string<br /><br />Conditionally returned                                                                 | Indicates whether the Flexible Credential transaction object is actionable (<code>inquiry</code>) or merely informative (<code>advice</code>).<br /><br />**Allowable Values:**<br /><br /><code>inquiry</code>, <code>advice</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| funding.gateway\_log.response.data.flex.**eligible**<br /><br />string<br /><br />Conditionally returned                                                               | Indicates whether or not the transaction is eligible for Flexible Credential transactions.<br /><br />**Allowable Values:**<br /><br /><code>true</code>, <code>false</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| funding.gateway\_log.response.data.flex.**eligible\_products**<br /><br />array of strings<br /><br />Conditionally returned                                           | Specifies which of the payment instrument’s credentials is eligible for this transaction:<br /><br />- A value of <code>DEBIT</code> indicates the primary credential.<br />- A value of <code>LOAN</code> indicates the secondary credential.<br /><br />**Allowable Values:**<br /><br /><code>DEBIT</code>, <code>LOAN</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| funding.gateway\_log.response.data.flex.**secondary\_credential\_identifier**<br /><br />string<br /><br />Conditionally returned                                      | Identifies the secondary credential used in the transaction, if applicable.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| funding.gateway\_log.response.data.flex.**selected\_product**<br /><br />string<br /><br />Conditionally returned                                                      | Indicates the eligible product that was used in the transaction.<br /><br />**Allowable Values:**<br /><br /><code>DEBIT</code>, <code>LOAN</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| funding.gateway\_log.**timed\_out**<br /><br />boolean<br /><br />Conditionally returned                                                                               | Whether the gateway sent a response (<code>true</code>) or timed out (<code>false</code>).<br /><br />**Allowable Values:**<br /><br /><code>true</code>, <code>false</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| funding.gateway\_log.**transaction\_id**<br /><br />string<br /><br />Returned                                                                                         | Customer-defined identifier for the transaction.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| funding.**source**<br /><br />object<br /><br />Returned                                                                                                               | Contains funding source information for the transaction, including the funding type and time.<br /><br />**Allowable Values:**<br /><br /><code>active</code>, <code>created\_time</code>, <code>is\_default\_account</code>, <code>last\_modified\_time</code>, <code>token</code>, <code>type</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| funding.source.**active**<br /><br />boolean<br /><br />Returned                                                                                                       | Whether the funding source is active.<br /><br />**Allowable Values:**<br /><br /><code>true</code>, <code>false</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| funding.source.**created\_time**<br /><br />datetime<br /><br />Returned                                                                                               | Date and time when the funding source was created, in UTC.<br /><br />**Allowable Values:**<br /><br />datetime<br /><br />**Format:**<br />yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| funding.source.**is\_default\_account**<br /><br />boolean<br /><br />Returned                                                                                         | Whether the GPA order unload’s funding source is the default funding account.<br /><br />**Allowable Values:**<br /><br /><code>true</code>, <code>false</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| funding.source.**last\_modified\_time**<br /><br />datetime<br /><br />Returned                                                                                        | Date and time when the funding source was last modified, in UTC.<br /><br />**Allowable Values:**<br /><br />datetime<br /><br />**Format:**<br />yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| funding.source.**token**<br /><br />string<br /><br />Returned                                                                                                         | Unique identifier of the funding source.<br /><br />**Allowable Values:**<br /><br />Format: UUID                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| funding.source.**type**<br /><br />string<br /><br />Returned                                                                                                          | Funding type of the funding source.<br /><br />**Allowable Values:**<br /><br /><code>ach</code>, <code>paymentcard</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| funding.**source\_address**<br /><br />object<br /><br />Conditionally returned                                                                                        | Contains information about the billing address of the funding source.<br /><br />**Allowable Values:**<br /><br /><code>active</code>, <code>address\_1</code>, <code>address\_2</code>, <code>business\_token</code>, <code>city</code>, <code>country</code>, <code>created\_time</code>, <code>first\_name</code>, <code>is\_default\_address</code>, <code>last\_modified\_time</code>, <code>last\_name</code>, <code>phone</code>, <code>postal\_code</code>, <code>state</code>, <code>token</code>, <code>user\_token</code>, <code>zip</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| funding.source\_address.**active**<br /><br />boolean<br /><br />Conditionally returned                                                                                | Whether the address is active.<br /><br />**Allowable Values:**<br /><br /><code>true</code>, <code>false</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| funding.source\_address.**address\_1**<br /><br />string<br /><br />Returned                                                                                           | Street address of the funding source.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| funding.source\_address.**address\_2**<br /><br />string<br /><br />Conditionally returned                                                                             | Additional address information for the funding source.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| funding.source\_address.**business\_token**<br /><br />string<br /><br />Conditionally returned                                                                        | Unique identifier of the business account holder associated with the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| funding.source\_address.**city**<br /><br />string<br /><br />Returned                                                                                                 | City of the funding source.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| funding.source\_address.**country**<br /><br />string<br /><br />Returned                                                                                              | Country of the funding source.<br /><br />**Allowable Values:**<br /><br />1–40 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| funding.source\_address.**created\_time**<br /><br />datetime<br /><br />Returned                                                                                      | Date and time when the address was created, in UTC.<br /><br />**Allowable Values:**<br /><br />datetime<br /><br />**Format:**<br />yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| funding.source\_address.**first\_name**<br /><br />string<br /><br />Returned                                                                                          | First name of the account holder associated with the funding source.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| funding.source\_address.**is\_default\_address**<br /><br />boolean<br /><br />Conditionally returned                                                                  | Whether this address is the default address used by the funding source.<br /><br />**Allowable Values:**<br /><br /><code>true</code>, <code>false</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| funding.source\_address.**last\_modified\_time**<br /><br />datetime<br /><br />Returned                                                                               | Date and time when the address was last modified, in UTC.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />datetime<br /><br />**Format:**<br />yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| funding.source\_address.**last\_name**<br /><br />string<br /><br />Returned                                                                                           | Last name of the account holder associated with the funding source.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| funding.source\_address.**phone**<br /><br />string<br /><br />Conditionally returned                                                                                  | Phone number of the funding source.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| funding.source\_address.**postal\_code**<br /><br />string<br /><br />Returned                                                                                         | Postal code of the funding source.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| funding.source\_address.**state**<br /><br />string<br /><br />Returned                                                                                                | Two-character state, provincial, or territorial abbreviation.<br /><br />For the complete list, see <a href="/core-api/kyc-verification/#_valid_state_provincial_territorial_and_federal_abbreviations">Valid state, provincial, territorial, and federal abbreviations</a>.<br /><br />**Allowable Values:**<br /><br />2 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| funding.source\_address.**token**<br /><br />string<br /><br />Returned                                                                                                | Unique identifier of the <code>funding\_source\_address</code> object.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| funding.source\_address.**user\_token**<br /><br />string<br /><br />Conditionally returned                                                                            | Unique identifier of the user account holder associated with the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| funding.source\_address.**zip**<br /><br />string<br /><br />Returned                                                                                                  | United States ZIP code of the funding source.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| funding\_source\_address\_token<br /><br />string<br /><br />Conditionally returned                                                                                    | Identifies the funding source used for this order.<br /><br />**Allowable Values:**<br /><br />Existing <code>funding\_source\_address</code> token.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| funding\_source\_token<br /><br />string<br /><br />Returned                                                                                                           | Identifies the funding source used for this order.<br /><br />**Allowable Values:**<br /><br />Existing <code>funding\_source</code> token                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| jit\_funding<br /><br />object<br /><br />Conditionally returned                                                                                                       | Contains information about the JIT Funding load event, in which funds are loaded into an account.<br /><br />This object is returned if your program uses JIT Funding.<br /><br />**Allowable Values:**<br /><br /><code>acting\_user\_token</code>, <code>address\_verification</code>, <code>amount</code>, <code>balances</code>, <code>business\_token</code>, <code>decline\_reason</code>, <code>incremental\_authorization\_jit\_funding\_tokens</code>, <code>memo</code>, <code>method</code>, <code>original\_jit\_funding\_token</code>, <code>tags</code>, <code>token</code>, <code>user\_token</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| jit\_funding.**acting\_user\_token**<br /><br />string<br /><br />Conditionally returned                                                                               | User who conducted the transaction.<br /><br />Can be a child user configured to share its parent’s account balance.<br /><br />**Allowable Values:**<br /><br />36 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| jit\_funding.**address\_verification**<br /><br />object<br /><br />Conditionally returned                                                                             | Contains address verification data used to make JIT Funding decisions.<br /><br />**Allowable Values:**<br /><br /><code>gateway</code>, <code>issuer</code>, <code>request</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| jit\_funding.address\_verification.**gateway**<br /><br />object<br /><br />Conditionally returned                                                                     | Contains address verification data consisting of address data entered by the cardholder, address data held by the Marqeta platform, and an assertion by the Marqeta platform as to whether the two sets of data match.<br /><br />**Allowable Values:**<br /><br /><code>on\_file</code>, <code>response</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| jit\_funding.address\_verification.gateway.**on\_file**<br /><br />object<br /><br />Conditionally returned                                                            | Contains address verification information.<br /><br />**Allowable Values:**<br /><br /><code>postal\_code</code>, <code>street\_address</code>, <code>zip</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| jit\_funding.address\_verification.gateway.on\_file.**postal\_code**<br /><br />string<br /><br />Conditionally returned                                               | Postal code of the address.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| jit\_funding.address\_verification.gateway.on\_file.**street\_address**<br /><br />string<br /><br />Conditionally returned                                            | Street name and number of the address.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| jit\_funding.address\_verification.gateway.on\_file.**zip**<br /><br />string<br /><br />Conditionally returned                                                        | United States ZIP code of the address.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| jit\_funding.address\_verification.gateway.**response**<br /><br />object<br /><br />Conditionally returned                                                            | Response codes and memos for account name verification, address verification, card security verification, and transactions.<br /><br />**Allowable Values:**<br /><br /><code>additional\_information</code>, <code>code</code>, <code>memo</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| jit\_funding.address\_verification.gateway.response.**additional\_information**<br /><br />string<br /><br />Conditionally returned                                    | Additional information about the transaction, such as velocity control details.<br /><br />This field is returned in transaction response objects only. It is not returned in address verification or card security verification response objects.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| jit\_funding.address\_verification.gateway.response.**code**<br /><br />string<br /><br />Returned                                                                     | Four-digit response code for address verification, card security code verification, or transactions.<br /><br />For account name verification, the four digits correspond with assertions that the first, middle, last, and full name of the cardholder on the Marqeta platform match the data provided by the cardholder.<br /><br />- <code>0</code> indicates no validation was performed<br />- <code>1</code> indicates the match was unsuccessful (not matched)<br />- <code>2</code> indicates the match was partial<br />- <code>3</code> indicates the match was exact<br /><br />For example:<br /><br />Code / First Name / Middle Name / Last Name / Full Name<br /><code>0000</code> / Not validated / Not validated / Not validated / Not validated<br /><code>1111</code> / Not matched / Not matched / Not matched / Not matched<br /><code>3333</code> / Exact match / Exact match / Exact match / Exact match<br /><code>1232</code> / Not matched / Partial match / Exact match / Partial match<br /><br />For address verification responses, the code is an assertion by the Marqeta platform as to whether its address verification data matches that provided by the cardholder:<br /><br />Code / Address / Postal Code<br /><code>0000</code> / Match / Match<br /><code>0001</code> / Match / Not matched<br /><code>0100</code> / Not matched / Match<br /><code>0101</code> / Not matched / Not matched<br /><code>0200</code> / Data not present / Match<br /><code>0201</code> / Data not present / Not matched<br /><code>0002</code> / Match / Data not present<br /><code>0102</code> / Not matched / Data not present<br /><code>0303</code> / Not validated / Not validated<br /><br />For card security verification, the code indicates whether the verification check passed and can have these possible values:<br /><br />- <code>0000</code> – Passed<br />- <code>0001</code> – Did not pass<br /><br />For a transaction, the code describes the outcome of the attempted transaction. For the full list of transaction codes, see <a href="/developer-guides/about-transactions/#_transaction_response_codes">Transaction response codes</a>.<br /><br />**Allowable Values:**<br /><br />Four-digit code |
| jit\_funding.address\_verification.gateway.response.**memo**<br /><br />string<br /><br />Returned                                                                     | Additional text that describes the response.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| jit\_funding.address\_verification.**issuer**<br /><br />object<br /><br />Conditionally returned                                                                      | Contains address verification data consisting of address data entered by the cardholder, address data held by the Marqeta platform, and an assertion by the Marqeta platform as to whether the two sets of data match.<br /><br />**Allowable Values:**<br /><br /><code>on\_file</code>, <code>response</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| jit\_funding.address\_verification.issuer.**on\_file**<br /><br />object<br /><br />Conditionally returned                                                             | Contains address verification information.<br /><br />**Allowable Values:**<br /><br /><code>postal\_code</code>, <code>street\_address</code>, <code>zip</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| jit\_funding.address\_verification.issuer.on\_file.**postal\_code**<br /><br />string<br /><br />Conditionally returned                                                | Postal code of the address.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| jit\_funding.address\_verification.issuer.on\_file.**street\_address**<br /><br />string<br /><br />Conditionally returned                                             | Street name and number of the address.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| jit\_funding.address\_verification.issuer.on\_file.**zip**<br /><br />string<br /><br />Conditionally returned                                                         | United States ZIP code of the address.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| jit\_funding.address\_verification.issuer.**response**<br /><br />object<br /><br />Conditionally returned                                                             | Response codes and memos for account name verification, address verification, card security verification, and transactions.<br /><br />**Allowable Values:**<br /><br /><code>additional\_information</code>, <code>code</code>, <code>memo</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| jit\_funding.address\_verification.issuer.response.**additional\_information**<br /><br />string<br /><br />Conditionally returned                                     | Additional information about the transaction, such as velocity control details.<br /><br />This field is returned in transaction response objects only. It is not returned in address verification or card security verification response objects.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| jit\_funding.address\_verification.issuer.response.**code**<br /><br />string<br /><br />Returned                                                                      | Four-digit response code for address verification, card security code verification, or transactions.<br /><br />For account name verification, the four digits correspond with assertions that the first, middle, last, and full name of the cardholder on the Marqeta platform match the data provided by the cardholder.<br /><br />- <code>0</code> indicates no validation was performed<br />- <code>1</code> indicates the match was unsuccessful (not matched)<br />- <code>2</code> indicates the match was partial<br />- <code>3</code> indicates the match was exact<br /><br />For example:<br /><br />Code / First Name / Middle Name / Last Name / Full Name<br /><code>0000</code> / Not validated / Not validated / Not validated / Not validated<br /><code>1111</code> / Not matched / Not matched / Not matched / Not matched<br /><code>3333</code> / Exact match / Exact match / Exact match / Exact match<br /><code>1232</code> / Not matched / Partial match / Exact match / Partial match<br /><br />For address verification responses, the code is an assertion by the Marqeta platform as to whether its address verification data matches that provided by the cardholder:<br /><br />Code / Address / Postal Code<br /><code>0000</code> / Match / Match<br /><code>0001</code> / Match / Not matched<br /><code>0100</code> / Not matched / Match<br /><code>0101</code> / Not matched / Not matched<br /><code>0200</code> / Data not present / Match<br /><code>0201</code> / Data not present / Not matched<br /><code>0002</code> / Match / Data not present<br /><code>0102</code> / Not matched / Data not present<br /><code>0303</code> / Not validated / Not validated<br /><br />For card security verification, the code indicates whether the verification check passed and can have these possible values:<br /><br />- <code>0000</code> – Passed<br />- <code>0001</code> – Did not pass<br /><br />For a transaction, the code describes the outcome of the attempted transaction. For the full list of transaction codes, see <a href="/developer-guides/about-transactions/#_transaction_response_codes">Transaction response codes</a>.<br /><br />**Allowable Values:**<br /><br />Four-digit code |
| jit\_funding.address\_verification.issuer.response.**memo**<br /><br />string<br /><br />Returned                                                                      | Additional text that describes the response.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| jit\_funding.address\_verification.**request**<br /><br />object<br /><br />Conditionally returned                                                                     | Contains address verification information.<br /><br />**Allowable Values:**<br /><br /><code>postal\_code</code>, <code>street\_address</code>, <code>zip</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| jit\_funding.address\_verification.request.**postal\_code**<br /><br />string<br /><br />Conditionally returned                                                        | Postal code of the address.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| jit\_funding.address\_verification.request.**street\_address**<br /><br />string<br /><br />Conditionally returned                                                     | Street name and number of the address.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| jit\_funding.address\_verification.request.**zip**<br /><br />string<br /><br />Conditionally returned                                                                 | United States ZIP code of the address.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| jit\_funding.**jit\_account\_name\_verification**<br /><br />object<br /><br />Conditionally returned                                                                  | Contains account name verification data used to make JIT Funding decisions from one of the following objects:<br /><br />- The <code>gateway</code> object, which contains account name verification data from your JIT Funding gateway.<br />- The <code>issuer</code> object, which contains account name verification data from the Marqeta platform.<br />- The <code>request</code> object, which contains account name verification data as it appears in a JIT Funding request.<br /><br />**Allowable Values:**<br /><br /><code>gateway</code>, <code>issuer</code>, <code>request</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| jit\_funding.jit\_account\_name\_verification.**gateway**<br /><br />object<br /><br />Conditionally returned                                                          | Contains account name verification data used to make JIT Funding decisions.<br /><br />**Allowable Values:**<br /><br /><code>first\_name</code>, <code>last\_name</code>, <code>middle\_name</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| jit\_funding.jit\_account\_name\_verification.**issuer**<br /><br />object<br /><br />Conditionally returned                                                           | Contains account name verification data used to make JIT Funding decisions.<br /><br />**Allowable Values:**<br /><br /><code>first\_name</code>, <code>last\_name</code>, <code>middle\_name</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| jit\_funding.jit\_account\_name\_verification.**request**<br /><br />object<br /><br />Conditionally returned                                                          | Contains account name verification data used to make JIT Funding decisions.<br /><br />**Allowable Values:**<br /><br /><code>first\_name</code>, <code>last\_name</code>, <code>middle\_name</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| jit\_funding.**amount**<br /><br />decimal<br /><br />Returned                                                                                                         | Requested amount of funding.<br /><br />**Allowable Values:**<br /><br />0 min<br /><br />**Format:**<br />0.00                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| jit\_funding.**balances**<br /><br />object<br /><br />Conditionally returned                                                                                          | Contains the GPA’s balance details.<br /><br />**Allowable Values:**<br /><br /><code>available\_balance</code>, <code>balances</code>, <code>cached\_balance</code>, <code>credit\_balance</code>, <code>currency\_code</code>, <code>impacted\_amount</code>, <code>last\_updated\_time</code>, <code>ledger\_balance</code>, <code>pending\_credits</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| jit\_funding.**business\_token**<br /><br />string<br /><br />Conditionally returned                                                                                   | Holder of the business account that was funded.<br /><br />**Allowable Values:**<br /><br />36 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| jit\_funding.**decline\_reason**<br /><br />string<br /><br />Conditionally returned                                                                                   | Reason why the transaction was declined.<br /><br />**Allowable Values:**<br /><br /><code>AMOUNT\_LIMIT\_EXCEEDED</code>, <code>BLOCKED\_BY\_CARDHOLDER</code>, <code>BLOCKED\_BY\_ISSUER</code>, <code>BLOCKED\_MERCHANT\_BY\_CARDHOLDER</code>, <code>CARD\_NOT\_ACTIVE</code>, <code>CARDHOLDER\_NOT\_ACTIVE</code>, <code>CLOSED\_ACCOUNT</code>, <code>DUPLICATE\_TRANSACTION</code>, <code>EXPIRED\_CARD</code>, <code>INSUFFICIENT\_FUNDS</code>, <code>INVALID\_AMOUNT</code>, <code>INVALID\_CARD</code>, <code>INVALID\_MERCHANT</code>, <code>NO\_CHECKING\_ACCOUNT</code>, <code>NO\_CREDIT\_ACCOUNT</code>, <code>NO\_SAVINGS\_ACCOUNT</code>, <code>REVOCATION\_ALL\_AUTHORIZATION\_ORDER</code>, <code>REVOCATION\_AUTHORIZATION\_ORDER</code>, <code>SOFT\_DECLINE\_AUTHENTICATION\_REQUIRED</code>, <code>SOFT\_DECLINE\_PIN\_REQUIRED</code>, <code>STOP\_PAYMENT</code>, <code>SUSPECTED\_FRAUD</code>, <code>TRANSACTION\_COUNT\_LIMIT\_EXCEEDED</code>, <code>TRANSACTION\_NOT\_PERMITTED</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| jit\_funding.**incremental\_authorization\_jit\_funding\_tokens**<br /><br />array of strings<br /><br />Conditionally returned                                        | Array of tokens referencing the JIT Funding tokens of all previous associated incremental authorization JIT Funding requests. Useful for ascertaining the final transaction amount when the original amount was incremented.<br /><br />**Allowable Values:**<br /><br />Existing incremental authorization JIT Funding tokens                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| jit\_funding.**memo**<br /><br />string<br /><br />Conditionally returned                                                                                              | Additional information that describes the JIT Funding transaction.<br /><br />**Allowable Values:**<br /><br />99 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| jit\_funding.**method**<br /><br />string<br /><br />Returned                                                                                                          | JIT Funding response type. See <a href="/core-api/gateway-jit-funding-messages/#_the_jit_funding_object">The jit\_funding object</a> for the purpose, funding event type, and description of each method.<br /><br />**Allowable Values:**<br /><br /><code>pgfs.adjustment.credit</code>, <code>pgfs.adjustment.debit</code>, <code>pgfs.authorization</code>, <code>pgfs.authorization.account\_verification</code>, <code>pgfs.authorization.capture</code>, <code>pgfs.authorization.capture.chargeback</code>, <code>pgfs.authorization.capture.chargeback.reversal</code>, <code>pgfs.authorization.incremental</code>, <code>pgfs.authorization.reversal</code>, <code>pgfs.authorization.standin</code>, <code>pgfs.auth\_plus\_capture</code>, <code>pgfs.auth\_plus\_capture.standin</code>, <code>pgfs.balanceinquiry</code>, <code>pgfs.billpayment</code>, <code>pgfs.billpayment.capture</code>, <code>pgfs.billpayment.reversal</code>, <code>pgfs.directdeposit.credit</code>, <code>pgfs.directdeposit.credit.reversal</code>, <code>pgfs.directdeposit.debit</code>, <code>pgfs.directdeposit.debit.reversal</code>, <code>pgfs.dispute.credit</code>, <code>pgfs.dispute.debit</code>, <code>pgfs.force\_capture</code>, <code>pgfs.network.load</code>, <code>pgfs.original.credit.authorization</code>, <code>pgfs.original.credit.auth\_plus\_capture</code>, <code>pgfs.pindebit.chargeback</code>, <code>pgfs.pindebit.chargeback.reversal</code>, <code>pgfs.product.inquiry</code>, <code>pgfs.refund</code>, <code>pgfs.refund.authorization</code>, <code>pgfs.refund.authorization.reversal</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| jit\_funding.**original\_jit\_funding\_token**<br /><br />string<br /><br />Conditionally returned                                                                     | Unique identifier of the first associated JIT Funding message. Useful for correlating related JIT Funding messages (that is, those associated with the same GPA order). Not included in the first of any set of related messages.<br /><br />**Allowable Values:**<br /><br />36 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| jit\_funding.**tags**<br /><br />string<br /><br />Conditionally returned                                                                                              | Customer-defined tags related to the JIT Funding transaction.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| jit\_funding.**token**<br /><br />string<br /><br />Returned                                                                                                           | Existing JIT Funding token matching the <code>funding.gateway\_log.transaction\_id</code> field of the associated GPA order.<br /><br />**NOTE:** The <code>transaction\_id</code> field updates if a subsequent JIT Funding message associated with that GPA order is sent. If multiple JIT Funding messages are associated with the same GPA order, the <code>transaction\_id</code> field matches the token of the most recent message.<br /><br />**Allowable Values:**<br /><br />36 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| jit\_funding.**user\_token**<br /><br />string<br /><br />Returned                                                                                                     | Holder of the user account that was funded.<br /><br />**Allowable Values:**<br /><br />36 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| last\_modified\_time<br /><br />datetime<br /><br />Returned                                                                                                           | Date and time when the GPA unload order was last modified, in UTC.<br /><br />**Allowable Values:**<br /><br />datetime<br /><br />**Format:**<br />yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| memo<br /><br />string<br /><br />Conditionally returned                                                                                                               | Additional descriptive text.<br /><br />**Allowable Values:**<br /><br />99 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| original\_order\_token<br /><br />string<br /><br />Conditionally returned                                                                                             | Identifies the original GPA order.<br /><br />**Allowable Values:**<br /><br />Existing GPA order token                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| response<br /><br />object<br /><br />Returned                                                                                                                         | Response codes and memos for account name verification, address verification, card security verification, and transactions.<br /><br />**Allowable Values:**<br /><br /><code>additional\_information</code>, <code>code</code>, <code>memo</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| response.**additional\_information**<br /><br />string<br /><br />Conditionally returned                                                                               | Additional information about the transaction, such as velocity control details.<br /><br />This field is returned in transaction response objects only. It is not returned in address verification or card security verification response objects.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| response.**code**<br /><br />string<br /><br />Returned                                                                                                                | Four-digit response code for address verification, card security code verification, or transactions.<br /><br />For account name verification, the four digits correspond with assertions that the first, middle, last, and full name of the cardholder on the Marqeta platform match the data provided by the cardholder.<br /><br />- <code>0</code> indicates no validation was performed<br />- <code>1</code> indicates the match was unsuccessful (not matched)<br />- <code>2</code> indicates the match was partial<br />- <code>3</code> indicates the match was exact<br /><br />For example:<br /><br />Code / First Name / Middle Name / Last Name / Full Name<br /><code>0000</code> / Not validated / Not validated / Not validated / Not validated<br /><code>1111</code> / Not matched / Not matched / Not matched / Not matched<br /><code>3333</code> / Exact match / Exact match / Exact match / Exact match<br /><code>1232</code> / Not matched / Partial match / Exact match / Partial match<br /><br />For address verification responses, the code is an assertion by the Marqeta platform as to whether its address verification data matches that provided by the cardholder:<br /><br />Code / Address / Postal Code<br /><code>0000</code> / Match / Match<br /><code>0001</code> / Match / Not matched<br /><code>0100</code> / Not matched / Match<br /><code>0101</code> / Not matched / Not matched<br /><code>0200</code> / Data not present / Match<br /><code>0201</code> / Data not present / Not matched<br /><code>0002</code> / Match / Data not present<br /><code>0102</code> / Not matched / Data not present<br /><code>0303</code> / Not validated / Not validated<br /><br />For card security verification, the code indicates whether the verification check passed and can have these possible values:<br /><br />- <code>0000</code> – Passed<br />- <code>0001</code> – Did not pass<br /><br />For a transaction, the code describes the outcome of the attempted transaction. For the full list of transaction codes, see <a href="/developer-guides/about-transactions/#_transaction_response_codes">Transaction response codes</a>.<br /><br />**Allowable Values:**<br /><br />Four-digit code |
| response.**memo**<br /><br />string<br /><br />Returned                                                                                                                | Additional text that describes the response.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| state<br /><br />string<br /><br />Returned                                                                                                                            | Current status of the GPA unload order.<br /><br />**Allowable Values:**<br /><br /><code>PENDING</code>, <code>CLEARED</code>, <code>COMPLETION</code>, <code>DECLINED</code>, <code>ERROR</code>, <code>REVERSED</code>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| tags<br /><br />string<br /><br />Conditionally returned                                                                                                               | Comma-delimited list of tags describing the GPA order.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| token<br /><br />string<br /><br />Returned                                                                                                                            | Unique identifier of the GPA unload order.<br /><br />**Allowable Values:**<br /><br />Existing GPA unload order token                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| transaction\_token<br /><br />string<br /><br />Returned                                                                                                               | Unique identifier of the transaction.<br /><br />**Allowable Values:**<br /><br />Format: UUID                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |

<h3 id="_sample_response_body_5">
  Sample response body
</h3>

```json JSON expandable lines wrap theme={null}
{
  "token": "my_unload_01",
  "amount": 500,
  "created_time": "2024-11-30T23:14:50Z",
  "last_modified_time": "2024-11-30T23:15:50Z",
  "transaction_token": "158",
  "state": "COMPLETION",
  "response": {
    "code": "0000",
    "memo": "Approved or completed successfully"
  },
  "funding": {
    "amount": 500,
    "source": {
      "type": "program",
      "token": "**********e_01",
      "active": true,
      "name": "my_program_funding_source_01",
      "is_default_account": false,
      "created_time": "2025-03-31T19:13:23Z",
      "last_modified_time": "2025-03-31T19:13:23Z"
    }
  },
  "funding_source_token": "**********e_01",
  "original_order_token": "my_gpaorder_01"
}
```


## Related topics

- [Transactions](/docs/core-api/transactions.md)
- [Simulations 2.0 — Card Transactions](/docs/core-api/simulations-card-transactions.md)
- [Event Types](/docs/core-api/event-types.md)
- [Gateway JIT Funding Messages](/docs/core-api/gateway-jit-funding-messages.md)
- [Auto Reload](/docs/core-api/auto-reload.md)
