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

# Intra-Account Transfers

> An intra-account transfer moves funds from the general purpose account (GPA) of a user or business account holder (a user or to another account for the same account holder.

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

An intra-account transfer moves funds between general purpose accounts (GPAs) of the same user or business account holder. You can only transfer funds between a parent account and their child accounts within your card program. Both the sender and recipient accounts must be active.

<Note>
  **Note**\
  Intra-account transfers are only available for specific, preapproved use cases. For more information about this endpoint, contact your Marqeta representative.
</Note>

<h2 id="post_peertransfers">
  Create intra-account transfer
</h2>

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

Use this endpoint to request an intra-account transfer. Add the source details to the body of the request in [JSON](http://www.json.org/) format.

When creating an intra-account transfer request, you must pass in both a token to identify the transfer sender (either `sender_user_token` or `sender_business_token`) and a token to identify the transfer recipient (either `recipient_user_token` or `recipient_business_token`). The sender and recipient objects must already exist.

<Note>
  **Note**\
  This feature is disabled by default and requires activation by Marqeta.

  This feature enables you to transfer or reallocate funds where the `sender` and the `recipient` belong to the same user within the card program. It does not allow you to transfer or reallocate funds between different users within the same card program, or between different card programs. Contact your Marqeta representative for more information.
</Note>

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

| Fields                                                           | Description                                                                                                                                                                                                                                                                                                                                                                                             |
| ---------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| amount<br /><br />decimal<br /><br />Required                    | Amount of the transfer.<br /><br />**Allowable Values:**<br /><br />decimal<br /><br />**Format:**<br />0.00                                                                                                                                                                                                                                                                                            |
| 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>                                                                                                                                                                                  |
| memo<br /><br />string<br /><br />Optional                       | Additional descriptive text about the transfer.<br /><br />**Allowable Values:**<br /><br />1–99 chars                                                                                                                                                                                                                                                                                                  |
| recipient\_business\_token<br /><br />string<br /><br />Optional | Specifies the business account holder that receives funds.<br /><br />Send a `GET` request to `/businesses` to retrieve business tokens.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                                                                                                                         |
| recipient\_user\_token<br /><br />string<br /><br />Optional     | Specifies the user account holder that receives funds.<br /><br />Send a `GET` request to `/users` to retrieve user tokens.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                                                                                                                                      |
| sender\_business\_token<br /><br />string<br /><br />Optional    | Specifies the business account holder that sends funds.<br /><br />Send a `GET` request to `/businesses` to retrieve business tokens.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                                                                                                                            |
| sender\_user\_token<br /><br />string<br /><br />Optional        | Specifies the user account holder that sends funds.<br /><br />Send a `GET` request to `/users` to retrieve user tokens.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                                                                                                                                         |
| tags<br /><br />string<br /><br />Optional                       | Metadata about the intra-account transfer.<br /><br />**Allowable Values:**<br /><br />1–255 chars                                                                                                                                                                                                                                                                                                      |
| token<br /><br />string<br /><br />Optional                      | Unique identifier of the intra-account transfer request.<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">
  Sample request body
</h3>

```json JSON lines wrap theme={null}
{
  "token": "my_intra_account_transfer_01",
  "sender_user_token": "my_user_01",
  "recipient_user_token": "my_user_01_account_2",
  "currency_code": "USD",
  "amount": 50
}
```

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

| Fields                                                                         | Description                                                                                                                                                                                                            |
| ------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| amount<br /><br />decimal<br /><br />Returned                                  | Amount of the transfer.<br /><br />**Allowable Values:**<br /><br />decimal<br /><br />**Format:**<br />0.00                                                                                                           |
| 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> |
| memo<br /><br />string<br /><br />Conditionally returned                       | Additional descriptive text about the intra-account transfer.<br /><br />**Allowable Values:**<br /><br />1–99 chars                                                                                                   |
| recipient\_business\_token<br /><br />string<br /><br />Conditionally returned | Specifies the business account holder that receives funds.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                      |
| recipient\_user\_token<br /><br />string<br /><br />Conditionally returned     | Specifies the user account holder that receives funds.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                          |
| sender\_business\_token<br /><br />string<br /><br />Conditionally returned    | Specifies the business account holder that sends funds.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                         |
| sender\_user\_token<br /><br />string<br /><br />Conditionally returned        | Specifies the user account holder that sends funds.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                             |
| tags<br /><br />string<br /><br />Conditionally returned                       | Metadata about the intra-account transfer.<br /><br />**Allowable Values:**<br /><br />1–255 chars                                                                                                                     |
| token<br /><br />string<br /><br />Returned                                    | Unique identifier of the intra-account transfer request.<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_intra_account_transfer_01",
  "amount": 50,
  "currency_code": "USD",
  "sender_user_token": "my_user_01",
  "recipient_user_token": "my_user_01_account_2",
  "created_time": "2023-03-11T19:15:01Z"
}
```

<h2 id="get_peertransfers_user_userorbusinesstoken">
  List intra-account transfers by account holder
</h2>

**Action:** `GET`\
**Endpoint:** `/peertransfers/user/{user_or_business_token}`

Use this endpoint to list intra-account transfers sent or received by a given account holder. Include a user or business token as a path parameter to identify the account holder whose transfers you want to list.

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

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

| Fields                                                          | Description                                                                                                                                                                                                                                |
| --------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| user\_or\_business\_token<br /><br />string<br /><br />Required | Existing user or business token.<br /><br />Send a `GET` request to `/users` to retrieve user tokens or to `/businesses` to retrieve business tokens.<br /><br />**Allowable Values:**<br /><br />Existing user or business resource token |

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

| Fields                                              | Description                                                                                                                                                                                     |
| --------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| count<br /><br />integer<br /><br />Optional        | Number of intra-account transfer resources to retrieve.<br /><br />**Allowable Values:**<br /><br />1-50<br /><br />**Default value:**<br />25                                                  |
| 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 (`field_1,field_2`, and so on). Leave blank to return all fields.<br /><br />**Allowable Values:**<br /><br />Comma-delimited list of fields, or blank |

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

| Fields                                                                         | Description                                                                                                                                                                                                            |
| ------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| amount<br /><br />decimal<br /><br />Returned                                  | Amount of the transfer.<br /><br />**Allowable Values:**<br /><br />decimal<br /><br />**Format:**<br />0.00                                                                                                           |
| 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> |
| memo<br /><br />string<br /><br />Conditionally returned                       | Additional descriptive text about the intra-account transfer.<br /><br />**Allowable Values:**<br /><br />1–99 chars                                                                                                   |
| recipient\_business\_token<br /><br />string<br /><br />Conditionally returned | Specifies the business account holder that receives funds.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                      |
| recipient\_user\_token<br /><br />string<br /><br />Conditionally returned     | Specifies the user account holder that receives funds.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                          |
| sender\_business\_token<br /><br />string<br /><br />Conditionally returned    | Specifies the business account holder that sends funds.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                         |
| sender\_user\_token<br /><br />string<br /><br />Conditionally returned        | Specifies the user account holder that sends funds.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                             |
| tags<br /><br />string<br /><br />Conditionally returned                       | Metadata about the intra-account transfer.<br /><br />**Allowable Values:**<br /><br />1–255 chars                                                                                                                     |
| token<br /><br />string<br /><br />Returned                                    | Unique identifier of the intra-account transfer request.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                        |

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

```json JSON lines wrap theme={null}
{
  "count": 1,
  "start_index": 0,
  "end_index": 2,
  "is_more": false,
  "data[]": null,
  "token": "my_intra_account_transfer_01",
  "amount": 40,
  "currency_code": "USD",
  "sender_user_token": "my_user_01",
  "recipient_user_token": "my_user_01_account_2",
  "created_time": "2023-03-11T20:41:27Z"
}
```

<h2 id="get_peertransfers_user_userorbusinesstoken_recipient">
  List received intra-account transfers
</h2>

**Action:** `GET`\
**Endpoint:** `/peertransfers/user/{user_or_business_token}/recipient`

Use this endpoint to list intra-account transfers sent by an account holder. Include a user or business token as a path parameter to identify the recipient.

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

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

| Fields                                                          | Description                                                                                                                                                                                                                                |
| --------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| user\_or\_business\_token<br /><br />string<br /><br />Required | Existing user or business token.<br /><br />Send a `GET` request to `/users` to retrieve user tokens or to `/businesses` to retrieve business tokens.<br /><br />**Allowable Values:**<br /><br />Existing user or business resource token |

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

| Fields                                              | Description                                                                                                                                                                                     |
| --------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| count<br /><br />integer<br /><br />Optional        | Number of intra-account transfer resources to retrieve.<br /><br />**Allowable Values:**<br /><br />1-50<br /><br />**Default value:**<br />25                                                  |
| 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 (`field_1,field_2`, and so on). Leave blank to return all fields.<br /><br />**Allowable Values:**<br /><br />Comma-delimited list of fields, or blank |

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

| Fields                                                                         | Description                                                                                                                                                                                                            |
| ------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| amount<br /><br />decimal<br /><br />Returned                                  | Amount of the transfer.<br /><br />**Allowable Values:**<br /><br />decimal<br /><br />**Format:**<br />0.00                                                                                                           |
| 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> |
| memo<br /><br />string<br /><br />Conditionally returned                       | Additional descriptive text about the intra-account transfer.<br /><br />**Allowable Values:**<br /><br />1–99 chars                                                                                                   |
| recipient\_business\_token<br /><br />string<br /><br />Conditionally returned | Specifies the business account holder that receives funds.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                      |
| recipient\_user\_token<br /><br />string<br /><br />Conditionally returned     | Specifies the user account holder that receives funds.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                          |
| sender\_business\_token<br /><br />string<br /><br />Conditionally returned    | Specifies the business account holder that sends funds.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                         |
| sender\_user\_token<br /><br />string<br /><br />Conditionally returned        | Specifies the user account holder that sends funds.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                             |
| tags<br /><br />string<br /><br />Conditionally returned                       | Metadata about the intra-account transfer.<br /><br />**Allowable Values:**<br /><br />1–255 chars                                                                                                                     |
| token<br /><br />string<br /><br />Returned                                    | Unique identifier of the intra-account transfer request.<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}
{
  "count": 3,
  "start_index": 0,
  "end_index": 2,
  "is_more": false,
  "data[]": null,
  "token": "my_intra_account_transfer_01",
  "amount": 40,
  "currency_code": "USD",
  "sender_user_token": "my_user_01",
  "recipient_user_token": "my_user_01_account_2",
  "created_time": "2023-03-11T20:41:27Z"
}
```

<h2 id="get_peertransfers_user_userorbusinesstoken_sender">
  List sent intra-account transfers
</h2>

**Action:** `GET`\
**Endpoint:** `/peertransfers/user/{user_or_business_token}/sender`

Use this endpoint to list intra-account transfers sent by an account holder. Include a user or business token as a path parameter to identify the sender.

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

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

| Fields                                                          | Description                                                                                                                                                                                                                                |
| --------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| user\_or\_business\_token<br /><br />string<br /><br />Required | Existing user or business token.<br /><br />Send a `GET` request to `/users` to retrieve user tokens or to `/businesses` to retrieve business tokens.<br /><br />**Allowable Values:**<br /><br />Existing user or business resource token |

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

| Fields                                              | Description                                                                                                                                                                                     |
| --------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| count<br /><br />integer<br /><br />Optional        | Number of intra-account transfer resources to retrieve.<br /><br />**Allowable Values:**<br /><br />1-50<br /><br />**Default value:**<br />25                                                  |
| 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 (`field_1,field_2`, and so on). Leave blank to return all fields.<br /><br />**Allowable Values:**<br /><br />Comma-delimited list of fields, or blank |

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

| Fields                                                                         | Description                                                                                                                                                                                                            |
| ------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| amount<br /><br />decimal<br /><br />Returned                                  | Amount of the transfer.<br /><br />**Allowable Values:**<br /><br />decimal<br /><br />**Format:**<br />0.00                                                                                                           |
| 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> |
| memo<br /><br />string<br /><br />Conditionally returned                       | Additional descriptive text about the intra-account transfer.<br /><br />**Allowable Values:**<br /><br />1–99 chars                                                                                                   |
| recipient\_business\_token<br /><br />string<br /><br />Conditionally returned | Specifies the business account holder that receives funds.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                      |
| recipient\_user\_token<br /><br />string<br /><br />Conditionally returned     | Specifies the user account holder that receives funds.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                          |
| sender\_business\_token<br /><br />string<br /><br />Conditionally returned    | Specifies the business account holder that sends funds.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                         |
| sender\_user\_token<br /><br />string<br /><br />Conditionally returned        | Specifies the user account holder that sends funds.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                             |
| tags<br /><br />string<br /><br />Conditionally returned                       | Metadata about the intra-account transfer.<br /><br />**Allowable Values:**<br /><br />1–255 chars                                                                                                                     |
| token<br /><br />string<br /><br />Returned                                    | Unique identifier of the intra-account transfer request.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                        |

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

```json JSON lines wrap theme={null}
{
  "count": "3,",
  "start_index": 0,
  "end_index": 2,
  "is_more": false,
  "data[]": null,
  "token": "my_intra_account_transfer_01",
  "amount": 40,
  "currency_code": "USD",
  "sender_user_token": "my_user_01",
  "recipient_user_token": "my_user_01_account_2",
  "created_time": "2023-05-11T20:41:27Z"
}
```

<h2 id="get_peertransfers_token">
  Retrieve intra-account transfer
</h2>

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

Use this endpoint to retrieve an intra-account transfer request. Include the intra-account transfer `token` as a path parameter in the URL to identify the intra-account transfer to return.

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

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

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

| Fields                                                                         | Description                                                                                                                                                                                                            |
| ------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| amount<br /><br />decimal<br /><br />Returned                                  | Amount of the transfer.<br /><br />**Allowable Values:**<br /><br />decimal<br /><br />**Format:**<br />0.00                                                                                                           |
| 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> |
| memo<br /><br />string<br /><br />Conditionally returned                       | Additional descriptive text about the intra-account transfer.<br /><br />**Allowable Values:**<br /><br />1–99 chars                                                                                                   |
| recipient\_business\_token<br /><br />string<br /><br />Conditionally returned | Specifies the business account holder that receives funds.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                      |
| recipient\_user\_token<br /><br />string<br /><br />Conditionally returned     | Specifies the user account holder that receives funds.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                          |
| sender\_business\_token<br /><br />string<br /><br />Conditionally returned    | Specifies the business account holder that sends funds.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                         |
| sender\_user\_token<br /><br />string<br /><br />Conditionally returned        | Specifies the user account holder that sends funds.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                             |
| tags<br /><br />string<br /><br />Conditionally returned                       | Metadata about the intra-account transfer.<br /><br />**Allowable Values:**<br /><br />1–255 chars                                                                                                                     |
| token<br /><br />string<br /><br />Returned                                    | Unique identifier of the intra-account transfer request.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                        |

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

```json JSON lines wrap theme={null}
{
  "token": "my_intra_account_transfer_01",
  "amount": 50,
  "currency_code": "USD",
  "sender_user_token": "my_user_01",
  "recipient_user_token": "my_user_01_account_2",
  "created_time": "2023-03-11T19:15:01Z"
}
```


## Related topics

- [Transactions Overview](/docs/developer-guides/transactions-landing-page.md)
- [Transactions](/docs/core-api/transactions.md)
- [Transfers](/docs/core-api/digital-banking-transfers.md)
- [Program Transfers](/docs/core-api/program-transfers.md)
- [Creating a Dispute](/docs/developer-guides/disputes-create.md)
