> ## 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 card product 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>;
  });
};

<Info>
  This API is only available on version `2025-07-04`.
</Info>

The CardProduct endpoint retrieves the Card Brands associated with a given Card Product.

## CardProduct Objects

<ParamList
  items={[
(get_common_parameters('CardProduct').id),
{
name: 'name',
type: 'string',
required: false,
description: 'The name of the card product.',
},
{
name: 'issuer',
type: 'string',
required: false,
description: 'The issuer of the card product.',
},
{
name: 'type',
type: 'enum',
required: false,
description: 'The type of card product.',
enums: [
  { 
    name: 'specific',
    description: 'Indicates that a product has specific metadata that can be directly tied to a specific FI offering. CardBrand executions that are associated with this product will yield an exact Card Image.'
  }, 
  {
    name: 'generic',
    description: 'Indicates that a product has generic metadata and cannot be tied to a specific FI offering (e.g., standard Capital One card).'
  },
  {
    name: 'in_review',
    description: 'Brands undergoing verification.'
  }
],
},
{
name: 'brands',
type: 'object[]',
required: false,
description: 'The brands associated with the card.',
items: [
  {
    name: 'brands.id',
    type: 'string',
    required: false,
    description: (
      <>
        An ID that uniquely identifies the card's
        brand (ex. <code>pdt_15_brd_1</code> identifies <strong>Chase Sapphire Reserve</strong> with Visa Signature).
      </>
    ),
  },
  {
    name: 'brands.description',
    type: 'string',
    required: false,
    description: 'The description of the card brand.',
  },
  {
    name: 'brands.network',
    type: 'string',
    required: false,
    description: "The card's network.",
  },
  {
    name: 'brands.default_image',
    type: 'string',
    required: false,
    description: 'The default URL of the card art for this brand.',
  },
  {
    name: 'brands.network_tier',
    type: 'string',
    required: false,
    description: 'The network tier of the card.',
  }
],
},
(get_common_parameters('CardProduct').error),
(get_common_parameters('CardProduct').created_at),
(get_common_parameters('CardProduct').updated_at),
]}
/>

## Webhook Payload

<RequestExample>
  ```json THE CARD PRODUCT OBJECT theme={null}
  {
    "id": "pdt_17",
    "name": "Chase Freedom",
    "issuer": "Chase",
    "type": "specific",
    "brands": [
      {
          "id": "pdt_17_brd_1",
          "description": "Chase Freedom",
          "network": "visa",
          "network_tier": "signature",
          "default_image": "https://static.methodfi.com/card_brands/fb5fbd6a5d45b942752b9dc641b93d1f.png"
      },
      {
          "id": "pdt_17_brd_2",
          "description": "Chase Freedom",
          "network": "visa",
          "network_tier": "standard",
          "default_image": "https://static.methodfi.com/card_brands/6cb697528b0771f982f7c0e8b8869de3.png"
      }
    ]
  }
  ```
</RequestExample>
