> ## 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.

# Program Transfers

> A program transfer moves funds from an account holder's GPA to a program funding source.

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>;
};

A program transfer moves funds from an account holder’s general purpose account (GPA) to a program funding source. In contrast to a fee transfer, the program transfer amount is specified by the transfer itself and can therefore be set dynamically. An auto reload is triggered if the GPA has insufficient funds to cover the transfer amount and auto reload is enabled.

<Note>
  **Note**\
  The `/programtransfers` endpoint is only available for specific, preapproved use cases. For more information about this endpoint, contact your Marqeta representative.
</Note>

<h2 id="post_programtransfers">
  Create program transfer
</h2>

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

{/* <EndpointCard
title="Transfers to a program funding source"
path="/programtransfers"
method="post"
/> */}

Use this endpoint to create a program transfer. Add the program transfer details to the body of the request in [JSON](http://www.json.org/) format.

Include either `user_token` or `business_token` in the message body to specify the account holder whose general purpose account (GPA) will be debited by the program transfer. The user or business must already exist.

<Note>
  **Note**\
  If the GPA has insufficient funds to cover both the amount of the program transfer and all attached fees, then no funds are transferred.
</Note>

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

| Fields                                                            | Description                                                                                                                                                                                                                                                                                                                                                                               |
| ----------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| amount<br /><br />decimal<br /><br />Required                     | Amount of program transfer.<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. 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              | Contains attributes that define characteristics of one or more fees. This array is returned in the response when it is included in the request.<br /><br />**Allowable Values:**<br /><br />One or more <code>fee</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                                                                                                                                                                                                                                                                                                      |
| memo<br /><br />string<br /><br />Optional                        | Memo or note describing the program transfer.<br /><br />**Allowable Values:**<br /><br />1–99 chars                                                                                                                                                                                                                                                                                      |
| tags<br /><br />string<br /><br />Optional                        | Comma-delimited list of tags describing the program transfer.<br /><br />**Allowable Values:**<br /><br />1–255 chars                                                                                                                                                                                                                                                                     |
| token<br /><br />string<br /><br />Optional                       | Unique identifier of the program transfer.<br /><br />If you do not include a token, the system will generate one automatically. This token is necessary for use in other API 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 |
| type\_token<br /><br />string<br /><br />Required                 | Unique identifier of the program transfer type.<br /><br />Send a <code>GET</code> request to <code>/programtransfers/types</code> to retrieve program transfer type tokens.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                                                                       |
| user\_token<br /><br />string<br /><br />Optional                 | Unique identifier of the user. 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                                                                                                                  |

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

```json JSON lines wrap theme={null}
{
  "token": "my_program_transfer_01",
  "amount": 1,
  "tags": "tag1, tag2, tag3",
  "memo": "This is my program transfer",
  "type_token": "my_program_transfer_type_01",
  "user_token": "my_user_01",
  "currency_code": "USD"
}
```

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

| Fields                                                                                                                              | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| amount<br /><br />decimal<br /><br />Returned                                                                                       | Amount of program transfer.<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 account holder. Returned if <code>user\_token</code> is not specified.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| created\_time<br /><br />datetime<br /><br />Conditionally returned                                                                 | Date and time when the program transfer object 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                                                                  | Contains attributes that define characteristics of one or more fees.<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                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| 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                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| memo<br /><br />string<br /><br />Conditionally returned                                                                            | Additional description of the program transfer.<br /><br />**Allowable Values:**<br /><br />1–99 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| tags<br /><br />string<br /><br />Conditionally returned                                                                            | Comma-delimited list of tags describing the program transfer.<br /><br />**Allowable Values:**<br /><br />1–255 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| token<br /><br />string<br /><br />Conditionally returned                                                                           | Unique identifier of the program transfer.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| transaction\_token<br /><br />string<br /><br />Returned                                                                            | Unique identifier of the transaction.<br /><br />**Allowable Values:**<br /><br />Existing transaction token                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| type\_token<br /><br />string<br /><br />Returned                                                                                   | Unique identifier of the program transfer type.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| user\_token<br /><br />string<br /><br />Conditionally returned                                                                     | Unique identifier of the user account holder. Returned if <code>business\_token</code> is not specified.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |

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

```json JSON lines wrap theme={null}
{
  "token": "my_program_transfer_01",
  "type_token": "my_program_transfer_type_01",
  "user_token": "my_user_01",
  "transaction_token": "169",
  "currency_code": "USD",
  "amount": 1,
  "memo": "This is my program transfer",
  "tags": "tag1, tag2, tag3",
  "created_time": "2023-03-11T20:58:30Z"
}
```

<h2 id="get_programtransfers">
  List program transfers
</h2>

**Action:** `GET`\
**Endpoint:** `/programtransfers`

{/* <EndpointCard
title="Lists all program transfers"
path="/programtransfers"
method="get"
/> */}

Use this endpoint to list all program transfers.

To narrow your result set to program transfers of a particular type or that are associated with a particular account holder, include the appropriate parameters from the following URL Query Parameters table. This endpoint also supports [field filtering](/core-api/field-filtering/), [pagination](/core-api/sorting-and-pagination/), and [sorting](/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 program transfers 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 account holder whose program transfers you want to retrieve.<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 account holder whose program transfers you want to retrieve.<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                                                                                                                                                                                                             |
| type\_token<br /><br />string<br /><br />Optional     | Unique identifier of the program transfer type to retrieve.<br /><br />**Allowable Values:**<br /><br />Existing program transfer type token                                                                                                                                                                                                                                                                                                                                                |

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

| Fields                                                                                                                                      | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| ------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| count<br /><br />integer<br /><br />Conditionally returned                                                                                  | Number of program transfer 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 program transfer objects.<br /><br />Objects are returned as appropriate to your query.<br /><br />**Allowable Values:**<br /><br />Valid array of one or more program transfer objects                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| data\[].**amount**<br /><br />decimal<br /><br />Returned                                                                                   | Amount of program transfer.<br /><br />**Allowable Values:**<br /><br />decimal<br /><br />**Format:**<br />0.00                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| data\[].**business\_token**<br /><br />string<br /><br />Conditionally returned                                                             | Unique identifier of the business account holder. Returned if <code>user\_token</code> is not specified.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| data\[].**created\_time**<br /><br />datetime<br /><br />Conditionally returned                                                             | Date and time when the program transfer object was created, in UTC.<br /><br />**Allowable Values:**<br /><br />datetime<br /><br />**Format:**<br />yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| data\[].**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>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| data\[].**fees**<br /><br />array of objects<br /><br />Conditionally returned                                                              | Contains attributes that define characteristics of one or more fees.<br /><br />**Allowable Values:**<br /><br />Valid array of one or more <code>fees</code> objects                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| data\[].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>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| data\[].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                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| data\[].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                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| data\[].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>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| data\[].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                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| data\[].fees\[].fee.**name**<br /><br />string<br /><br />Returned                                                                          | Name of the fee.<br /><br />**Allowable Values:**<br /><br />50 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| data\[].fees\[].fee.**tags**<br /><br />string<br /><br />Conditionally returned                                                            | Descriptive metadata about the fee.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| data\[].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                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| data\[].fees\[].**memo**<br /><br />string<br /><br />Conditionally returned                                                                | Additional text describing the fee.<br /><br />**Allowable Values:**<br /><br />1–255 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| data\[].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                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| data\[].fees\[].**tags**<br /><br />string<br /><br />Conditionally returned                                                                | Descriptive metadata about the fee.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| data\[].fees\[].**token**<br /><br />string<br /><br />Returned                                                                             | Unique identifier of the fee.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| data\[].fees\[].**transaction\_token**<br /><br />string<br /><br />Returned                                                                | Unique identifier of the fee transaction.<br /><br />**Allowable Values:**<br /><br />36 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| 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\[].**memo**<br /><br />string<br /><br />Conditionally returned                                                                        | Additional description of the program transfer.<br /><br />**Allowable Values:**<br /><br />1–99 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| data\[].**tags**<br /><br />string<br /><br />Conditionally returned                                                                        | Comma-delimited list of tags describing the program transfer.<br /><br />**Allowable Values:**<br /><br />1–255 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| data\[].**token**<br /><br />string<br /><br />Conditionally returned                                                                       | Unique identifier of the program transfer.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| data\[].**transaction\_token**<br /><br />string<br /><br />Returned                                                                        | Unique identifier of the transaction.<br /><br />**Allowable Values:**<br /><br />Existing transaction token                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| data\[].**type\_token**<br /><br />string<br /><br />Returned                                                                               | Unique identifier of the program transfer type.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| data\[].**user\_token**<br /><br />string<br /><br />Conditionally returned                                                                 | Unique identifier of the user account holder. Returned if <code>business\_token</code> is not specified.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| 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_2">
  Sample response body
</h3>

```json JSON lines wrap theme={null}
{
  "count": 2,
  "start_index": 0,
  "end_index": 1,
  "is_more": false,
  "data[]": {
    "token": "my_program_transfer_02",
    "type_token": "my_program_transfer_type_01",
    "user_token": "my_user_01",
    "transaction_token": "170",
    "currency_code": "USD",
    "amount": 1,
    "memo": "This is my program transfer",
    "tags": "tag1, tag2, tag3",
    "created_time": "2023-03-11T21:02:45Z"
  }
}
```

<h2 id="get_programtransfers_token">
  Retrieve program transfer
</h2>

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

{/* <EndpointCard
title="Returns a specific program transfer"
path="/programtransfers/{token}"
method="get"
/> */}

Use this endpoint to retrieve a specific program transfer. Include the program transfer `token` path parameter to specify the program transfer to retrieve.

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

| Fields                                      | Description                                                                                                            |
| ------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- |
| token<br /><br />string<br /><br />Required | Unique identifier of the program transfer.<br /><br />**Allowable Values:**<br /><br />Existing program transfer token |

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

| Fields                                                                                                                              | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| amount<br /><br />decimal<br /><br />Returned                                                                                       | Amount of program transfer.<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 account holder. Returned if <code>user\_token</code> is not specified.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| created\_time<br /><br />datetime<br /><br />Conditionally returned                                                                 | Date and time when the program transfer object 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                                                                  | Contains attributes that define characteristics of one or more fees.<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                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| 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                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| memo<br /><br />string<br /><br />Conditionally returned                                                                            | Additional description of the program transfer.<br /><br />**Allowable Values:**<br /><br />1–99 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| tags<br /><br />string<br /><br />Conditionally returned                                                                            | Comma-delimited list of tags describing the program transfer.<br /><br />**Allowable Values:**<br /><br />1–255 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| token<br /><br />string<br /><br />Conditionally returned                                                                           | Unique identifier of the program transfer.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| transaction\_token<br /><br />string<br /><br />Returned                                                                            | Unique identifier of the transaction.<br /><br />**Allowable Values:**<br /><br />Existing transaction token                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| type\_token<br /><br />string<br /><br />Returned                                                                                   | Unique identifier of the program transfer type.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| user\_token<br /><br />string<br /><br />Conditionally returned                                                                     | Unique identifier of the user account holder. Returned if <code>business\_token</code> is not specified.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |

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

```json JSON lines wrap theme={null}
{
  "token": "my_program_transfer_02",
  "type_token": "my_program_transfer_type_01",
  "user_token": "my_user_01",
  "transaction_token": "170",
  "currency_code": "USD",
  "amount": 1,
  "memo": "This is my program transfer",
  "tags": "tag1, tag2, tag3",
  "created_time": "2023-03-11T21:02:45Z"
}
```

<h2 id="post_programtransfers_types">
  Create program transfer type
</h2>

**Action:** `POST`\
**Endpoint:** `/programtransfers/types`

{/* <EndpointCard
title="Creates a program transfer type"
path="/programtransfers/types"
method="post"
/> */}

Use this endpoint to create a program transfer type. Add the program transfer details to the body of the request in [JSON](http://www.json.org/) format.

You are required to pass in a `program_funding_source_token` to associate a program funding source with the program transfer type. You must therefore create a program funding source before creating a program transfer type.

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

| Fields                                                                | Description                                                                                                                                                                                                                                                                                                                                                                                    |
| --------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| memo<br /><br />string<br /><br />Required                            | Memo or note describing the program transfer type.<br /><br />**Allowable Values:**<br /><br />1–99 chars                                                                                                                                                                                                                                                                                      |
| program\_funding\_source\_token<br /><br />string<br /><br />Required | Unique identifier of the program funding source to which program transfers will be credited.<br /><br />Send a <code>GET</code> request to <code>/fundingsources/program</code> to retrieve program funding source tokens.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                              |
| tags<br /><br />string<br /><br />Optional                            | Comma-delimited list of tags describing the program transfer type.<br /><br />**Allowable Values:**<br /><br />1–255 chars                                                                                                                                                                                                                                                                     |
| token<br /><br />string<br /><br />Optional                           | Unique identifier of the program transfer type.<br /><br />If you do not include a token, the system will generate one automatically. This token is necessary for use in other API 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_program_transfer_type_01",
  "tags": "tag1, tag2, tag3",
  "memo": "This is my program transfer type.",
  "program_funding_source_token": "my_pfs_01"
}
```

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

| Fields                                                                     | Description                                                                                                                                                                          |
| -------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| created\_time<br /><br />datetime<br /><br />Conditionally returned        | The date and time when the program transfer type object was created, in UTC.<br /><br />**Allowable Values:**<br /><br />datetime<br /><br />**Format:**<br />yyyy-MM-ddThh:mm:ssZ   |
| last\_modified\_time<br /><br />datetime<br /><br />Conditionally returned | Date and time when the program transfer type object 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                   | Memo or note describing the program transfer type.<br /><br />**Allowable Values:**<br /><br />99 char max                                                                           |
| program\_funding\_source\_token<br /><br />string<br /><br />Returned      | Unique identifier of the program funding source to which program transfers will be credited.<br /><br />**Allowable Values:**<br /><br />Existing program funding source token       |
| tags<br /><br />string<br /><br />Conditionally returned                   | Comma-delimited list of tags describing the program transfer type.<br /><br />**Allowable Values:**<br /><br />255 char max                                                          |
| token<br /><br />string<br /><br />Returned                                | Unique identifier of the program transfer type request object.<br /><br />**Allowable Values:**<br /><br />36 char max                                                               |

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

```json JSON lines wrap theme={null}
{
  "token": "my_program_transfer_type_01",
  "tags": "tag1, tag2, tag3",
  "memo": "This is my program transfer type.",
  "program_funding_source_token": "my_pfs_01",
  "created_time": "2023-03-15T19:18:50Z",
  "last_modified_time": "2023-03-15T19:18:50Z"
}
```

<h2 id="get_programtransfers_types">
  List program transfer types
</h2>

**Action:** `GET`\
**Endpoint:** `/programtransfers/types`

{/* <EndpointCard
title="Lists all program transfer types"
path="/programtransfers/types"
method="get"
/> */}

Use this endpoint to list all program transfer types.

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

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

| Fields                                              | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| --------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| count<br /><br />integer<br /><br />Optional        | Number of program transfer types 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> |

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

| Fields                                                                                 | Description                                                                                                                                                                                                                                                                                                                      |
| -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| count<br /><br />integer<br /><br />Conditionally returned                             | Number of program transfer 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 program transfer types.<br /><br />Objects are returned as appropriate to your query.<br /><br />**Allowable Values:**<br /><br />Valid array of one or more program transfer type objects                                                                                                                              |
| data\[].**created\_time**<br /><br />datetime<br /><br />Conditionally returned        | The date and time when the program transfer type object was created, in UTC.<br /><br />**Allowable Values:**<br /><br />datetime<br /><br />**Format:**<br />yyyy-MM-ddThh:mm:ssZ                                                                                                                                               |
| data\[].**last\_modified\_time**<br /><br />datetime<br /><br />Conditionally returned | Date and time when the program transfer type object 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                   | Memo or note describing the program transfer type.<br /><br />**Allowable Values:**<br /><br />99 char max                                                                                                                                                                                                                       |
| data\[].**program\_funding\_source\_token**<br /><br />string<br /><br />Returned      | Unique identifier of the program funding source to which program transfers will be credited.<br /><br />**Allowable Values:**<br /><br />Existing program funding source token                                                                                                                                                   |
| data\[].**tags**<br /><br />string<br /><br />Conditionally returned                   | Comma-delimited list of tags describing the program transfer type.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                      |
| data\[].**token**<br /><br />string<br /><br />Returned                                | Unique identifier of the program transfer type request object.<br /><br />**Allowable Values:**<br /><br />36 char max                                                                                                                                                                                                           |
| 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_5">
  Sample response body
</h3>

```json JSON lines wrap theme={null}
{
  "count": 2,
  "start_index": 0,
  "end_index": 1,
  "is_more": false,
  "data[]": {
    "token": "my_program_transfer_type_02",
    "tags": "tag1, tag2, tag3",
    "memo": "This is my other program transfer type.",
    "program_funding_source_token": "pfs_test_01",
    "created_time": "2023-03-15T19:53:23Z",
    "last_modified_time": "2023-03-15T19:53:23Z"
  }
}
```

<h2 id="put_programtransfers_types_typetoken">
  Update program transfer type
</h2>

**Action:** `PUT`\
**Endpoint:** `/programtransfers/types/{type_token}`

{/* <EndpointCard
title="Updates a specific program transfer type"
path="/programtransfers/types/{type\_token}"
method="put"
/> */}

Use this endpoint to update a program transfer type. Include the `type_token` path parameter to indicate the program transfer type to update. Add the modified detail parameters to the body of the request in [JSON](http://www.json.org/) format. Only values of parameters in the request are modified; all others are left unchanged.

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

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

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

| Fields                                                                | Description                                                                                                                                                                                                                                                                                                                                                                                    |
| --------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| memo<br /><br />string<br /><br />Required                            | Memo or note describing the program transfer type.<br /><br />**Allowable Values:**<br /><br />1–99 chars                                                                                                                                                                                                                                                                                      |
| program\_funding\_source\_token<br /><br />string<br /><br />Required | Unique identifier of the program funding source to which program transfers will be credited.<br /><br />Send a <code>GET</code> request to <code>/fundingsources/program</code> to retrieve program funding source tokens.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                              |
| tags<br /><br />string<br /><br />Optional                            | Comma-delimited list of tags describing the program transfer type.<br /><br />**Allowable Values:**<br /><br />1–255 chars                                                                                                                                                                                                                                                                     |
| token<br /><br />string<br /><br />Optional                           | Unique identifier of the program transfer type.<br /><br />If you do not include a token, the system will generate one automatically. This token is necessary for use in other API 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_3">
  Sample request body
</h3>

```json JSON lines wrap theme={null}
{
  "program_funding_source_token": "pfs_test_02",
  "memo": "Update program funding source."
}
```

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

| Fields                                                                     | Description                                                                                                                                                                          |
| -------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| created\_time<br /><br />datetime<br /><br />Conditionally returned        | The date and time when the program transfer type object was created, in UTC.<br /><br />**Allowable Values:**<br /><br />datetime<br /><br />**Format:**<br />yyyy-MM-ddThh:mm:ssZ   |
| last\_modified\_time<br /><br />datetime<br /><br />Conditionally returned | Date and time when the program transfer type object 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                   | Memo or note describing the program transfer type.<br /><br />**Allowable Values:**<br /><br />99 char max                                                                           |
| program\_funding\_source\_token<br /><br />string<br /><br />Returned      | Unique identifier of the program funding source to which program transfers will be credited.<br /><br />**Allowable Values:**<br /><br />Existing program funding source token       |
| tags<br /><br />string<br /><br />Conditionally returned                   | Comma-delimited list of tags describing the program transfer type.<br /><br />**Allowable Values:**<br /><br />255 char max                                                          |
| token<br /><br />string<br /><br />Returned                                | Unique identifier of the program transfer type request object.<br /><br />**Allowable Values:**<br /><br />36 char max                                                               |

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

```json JSON lines wrap theme={null}
{
  "token": "my_program_transfer_type_02",
  "tags": "tag1, tag2, tag3",
  "memo": "Update program funding source.",
  "program_funding_source_token": "pfs_test_02",
  "created_time": "2023-03-15T19:53:23Z",
  "last_modified_time": "2023-03-15T19:58:33Z"
}
```

<h2 id="get_programtransfers_types_typetoken">
  Retrieve program transfer type
</h2>

**Action:** `GET`\
**Endpoint:** `/programtransfers/types/{type_token}`

{/* <EndpointCard
title="Returns a specific program transfer type"
path="/programtransfers/types/{type\_token}"
method="get"
/> */}

Use this endpoint to retrieve a specific program transfer. Include the `type_token` path parameter to indicate the program transfer type to return.

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

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

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

| Fields                                                                     | Description                                                                                                                                                                          |
| -------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| created\_time<br /><br />datetime<br /><br />Conditionally returned        | The date and time when the program transfer type object was created, in UTC.<br /><br />**Allowable Values:**<br /><br />datetime<br /><br />**Format:**<br />yyyy-MM-ddThh:mm:ssZ   |
| last\_modified\_time<br /><br />datetime<br /><br />Conditionally returned | Date and time when the program transfer type object 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                   | Memo or note describing the program transfer type.<br /><br />**Allowable Values:**<br /><br />99 char max                                                                           |
| program\_funding\_source\_token<br /><br />string<br /><br />Returned      | Unique identifier of the program funding source to which program transfers will be credited.<br /><br />**Allowable Values:**<br /><br />Existing program funding source token       |
| tags<br /><br />string<br /><br />Conditionally returned                   | Comma-delimited list of tags describing the program transfer type.<br /><br />**Allowable Values:**<br /><br />255 char max                                                          |
| token<br /><br />string<br /><br />Returned                                | Unique identifier of the program transfer type request object.<br /><br />**Allowable Values:**<br /><br />36 char max                                                               |

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

```json JSON lines wrap theme={null}
{
  "token": "my_program_transfer_type_01",
  "tags": "tag1, tag2, tag3",
  "memo": "This is my program transfer type.",
  "program_funding_source_token": "pfs_test_01",
  "created_time": "2023-03-15T19:18:50Z",
  "last_modified_time": "2023-03-15T19:18:50Z"
}
```
