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

# The products endpoint

export const get_common_parameters = (resource_name = 'resource') => {
  return {
    id: {
      name: 'id',
      type: "string",
      required: false,
      description: `Unique identifier for the ${resource_name}.`
    },
    entity_id: {
      name: 'entity_id',
      type: 'string',
      required: false,
      description: 'The ID of the associated Entity.'
    },
    account_id: {
      name: 'account_id',
      type: 'string',
      required: false,
      description: 'The ID of the associated Account.'
    },
    error: {
      name: 'error',
      type: 'object | null',
      required: false,
      description: <>
          An object representing an error that occurred while processing
          this {resource_name}. See <a href={`/reference/errors/${resource_name.replace(/^([A-Z])/, function (match) {
        return match.toLowerCase();
      }).replace(/([A-Z])/g, function (match) {
        return "-" + match.toLowerCase();
      })}-errors`}>{resource_name} errors</a>.
        </>
    },
    status_error: {
      name: 'status_error',
      type: 'object | null',
      required: false,
      description: <>
          An object representing an error that occurred while processing
          this {resource_name}. See <a href="/reference/errors/product-errors#status-errors">{resource_name} errors</a>.
        </>
    },
    metadata: {
      name: 'metadata',
      type: 'object | null',
      required: false,
      description: <>
          Additional data provided during creation.
          See <a href="/reference/metadata">metadata</a>
        </>
    },
    created_at: {
      name: 'created_at',
      type: 'string',
      required: false,
      description: `Timestamp of when the ${resource_name} was created.`
    },
    updated_at: {
      name: 'updated_at',
      type: 'string',
      required: false,
      description: `Timestamp of when the ${resource_name} was last updated.`
    },
    status: (enums = []) => ({
      name: 'status',
      type: 'enum',
      required: false,
      description: `Status of the ${resource_name}.`,
      enums
    }),
    type: (enums = []) => ({
      name: 'type',
      type: 'enum',
      required: false,
      description: `The type of ${resource_name}.`,
      enums
    })
  };
};

export const ParamList = ({items = [], is_child = false}) => {
  return items.map(item => {
    const field_props = {
      id: Math.random().toString(),
      body: item.name,
      name: item.name,
      type: item.type,
      required: item.required
    };
    const enums = item.enums || [];
    const items = item.items || [];
    const has_items = items?.length > 0;
    const has_enums = enums?.length > 0;
    const should_default_open = item.defaultOpen || false;
    const render_child_item = () => {
      const child_props = {
        title: has_enums ? "Possible enum values" : "properties"
      };
      if (should_default_open) child_props.defaultOpen = true;
      const has_inline_enums = has_enums && enums.every(enum_item => typeof enum_item === 'string') && enums.map((enum_item, idx) => {
        const is_last = idx === enums.length - 1;
        const is_2nd_to_last = idx === enums.length - 2;
        return <>
            <code>{enum_item}</code>
            {is_last && ''}
            {is_2nd_to_last && ' or '}
            {!is_last && !is_2nd_to_last && ', '}
          </>;
      });
      const enum_list = has_enums && !has_inline_enums && <Accordion {...child_props}>
          {enums.map((enum_item, index) => <div key={`enum-${index}`}>
              <code>{enum_item.name}</code>
              <br />
              <p>{enum_item.description}</p>
            </div>)}
        </Accordion>;
      const item_list = has_items && <Expandable {...child_props}>
          <ParamList items={items || []} is_child />
        </Expandable>;
      return <>
          <p>
            {item.description}
            {has_inline_enums && [has_inline_enums.length > 1 ? ' One of ' : ' Must be ', ...has_inline_enums]}
          </p>

          {enum_list}
          {item_list}
        </>;
    };
    return is_child ? <ResponseField {...field_props}>{render_child_item()}</ResponseField> : <ParamField {...field_props}>{render_child_item()}</ParamField>;
  });
};

The Account Products endpoint outlines the Products (*capabilities*) an Account has access to, and provides an overview of the status of all the Products.

<Info>Most products are accessible by default. However, some products have restricted access requiring team-by-team enablement and elevated account verification.</Info>

### Product Names

Products that an Account can have access to:

| Name                                         | Use-Case                                                                                                   | Supported Types | Resource Doc                                                                       |
| -------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | --------------- | ---------------------------------------------------------------------------------- |
| `update`                                     | On-Demand real-time account update (balance, due dates, etc) from the Account's financial institution      | All liabilities | [Updates](/2026-03-30/reference/accounts/updates/overview)                         |
| `balance`                                    | On-Demand real-time balance from the Account's financial institution                                       | All liabilities | [Balances](/2026-03-30/reference/accounts/balances/overview)                       |
| `card_brand`                                 | On-Demand retrieval of credit card metadata (Product / Brand Name, Art, etc) directly from the card issuer | Credit Cards    | [Card Brand](/2026-03-30/reference/accounts/card-brands/overview)                  |
| `attribute`                                  | On-Demand retrieval of account attributes from the Account's credit reporting                              | All liabilities | [Attributes](/2026-03-30/reference/accounts/attributes/overview)                   |
| `payoff`                                     | On-Demand retrieval of auto loan payoff (amount, per diem, etc) from the Account's financial institution   | Auto Loans      | [Payoffs](/2026-03-30/reference/accounts/payoffs/overview)                         |
| `payment`                                    | Next day electronic push payments to the Account's financial institution                                   | All liabilities | [Payments](/2026-03-30/reference/payments/overview)                                |
| `sensitive`                                  | On-Demand retrieval of underlying sensitive account information (PAN, CVV, account number)                 | All liabilities | [Sensitive](/2026-03-30/reference/accounts/sensitive/overview)                     |
| `payment_instrument.card`                    | On-Demand retrieval of card payment instruments from the Account's financial institution                   | Credit Cards    | [Payment Instruments](/2026-03-30/reference/accounts/payment-instruments/overview) |
| `payment_instrument.network_token`           | On-Demand retrieval of network token payment instruments from the Account's financial institution          | Credit Cards    | [Payment Instruments](/2026-03-30/reference/accounts/payment-instruments/overview) |
| `payment_instrument.inbound_achwire_payment` | On-Demand retrieval of inbound ACH/wire payment instruments from the Account's financial institution       | Credit Cards    | [Payment Instruments](/2026-03-30/reference/accounts/payment-instruments/overview) |

## Product Objects

<ParamList
  items={[
{
name: 'name',
type: 'string',
required: false,
description: (
  <>
    The name of the Product. See <a href="/2026-03-30/reference/accounts/products/overview#product-names">Product Names.</a>
  </>
),
},
get_common_parameters('Product').status([
{
  name: 'available',
  description: 'This Product is available for requests.',
},
{
  name: 'unavailable',
  description: 'Product is unavailable or is not in a fixable state for this Account.',
},
{
  name: 'restricted',
  description: 'This Product is not available to your team at this time. Contact your Method CSM for access.',
},
]),
get_common_parameters('Product').status_error,
{
name: 'latest_request_id',
type: 'string | null',
required: false,
description: 'ID of the most recently created Product resource.',
},
{
name: 'latest_successful_request_id',
type: 'string | null',
required: false,
description: 'ID of the most recently successful Product resource.',
},
{
name: 'is_subscribable',
type: 'boolean',
required: false,
description: 'A field indicating whether a Product supports Subscription enrollment.',
},
get_common_parameters('Product').created_at,
get_common_parameters('Product').updated_at,
]}
/>

## Webhook Payload

The [Webhook](/2026-03-30/reference/webhooks/overview) payload will contain the following information:

```json theme={null}
{
  "id": "string",
  "type": "product.create" | "product.update",
  "path": "/accounts/<acc_id>/products/<prd_id>",
}
```

<RequestExample>
  ```json THE PRODUCT OBJECT theme={null}
  {
    "name": "balance",
    "status": "available",
    "status_error": null,
    "latest_request_id": "bal_ELGT4hfikTTCJ",
    "latest_successful_request_id": "bal_ELGT4hfikTTCJ",
    "is_subscribable": false,
    "created_at": "2024-03-26T20:25:27.261Z",
    "updated_at": "2024-03-26T20:25:27.316Z"
  }
  ```
</RequestExample>
