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

# April Updates

## New Features

### Dashboard Updates

<img src="https://mintcdn.com/methodfinancial/zaEy2Zf5mLkHDuX_/images/dash-sso.png?fit=max&auto=format&n=zaEy2Zf5mLkHDuX_&q=85&s=e6e53d07c13c0312c412081859a4571f" alt="sso" width="3840" height="2160" data-path="images/dash-sso.png" />

We're continuing to improve the Dashboard experience with a few powerful updates:

* **SSO Support** – You can now log in using Single Sign-On. Reach out to your Method CSM to enable SSO for your team.
* **Multi-Team Search** – If you're a member of multiple teams, you can now quickly search and switch between them with ease.
* **PDF Export** – It is now possible to download Entity and Account details as a PDF. Contact your Method CSM to get access to this feature.

## Improvements

### Entity Attribute Handling

We've updated how Entity Attributes are requested. You must now explicitly specify which attributes you'd like to retrieve using a new payload format.

<Warning>Some attributes are restricted by default. Reach out to your Method CSM to get access to these attributes.</Warning>

<Accordion title="Previous">
  ```js theme={null}
  const response = await method
      .entities('ent_TYHMaRJUUeJ7U')
      .attributes
      .create();
  ```
</Accordion>

<Accordion title="New">
  ```js theme={null}
  const response = await method
      .entities('ent_TYHMaRJUUeJ7U')
      .attributes
      .create({
          attributes: [
              "credit_health_credit_card_usage",
              "credit_health_derogatory_marks",
              "credit_health_hard_inquiries",
              "credit_health_soft_inquiries",
              "credit_health_total_accounts",
              "credit_health_credit_age",
              "credit_health_payment_history",
              "credit_health_open_accounts",
              "credit_health_entity_delinquent"
          ]
      });
  ```
</Accordion>

For more details, refer to the [Entity Attributes API](https://docs.methodfi.com/reference/entities/attributes/create).

### Entity Subscription Creation

Entity subscription creation has been updated to support a new payload format.

<Accordion title="Previous">
  ```js theme={null}
  const response = await method
    .entities('ent_TYHMaRJUUeJ7U')
    .subscriptions
    .create('credit_score');
  ```
</Accordion>

<Accordion title="New">
  ```js theme={null}
  const response = await method
    .entities('ent_TYHMaRJUUeJ7U')
    .subscriptions
    .create({
      enroll: 'credit_score',
    });
  ```
</Accordion>

To enroll in an Entity Attribute subscription, use this format:

```js theme={null}
const response = await method
  .entities('ent_TYHMaRJUUeJ7U')
  .subscriptions
  .create({
    enroll: 'attribute',
    payload: {
      attributes: {
        requested_attributes: [
            'credit_health_credit_card_usage', 
            'credit_health_derogatory_marks'
        ]
      }
    }
  });
```

For more details, refer to the [Entity Subscriptions API](https://docs.methodfi.com/reference/entities/subscriptions/create).

## SDK Updates

* Released [version 1.1.14](https://github.com/MethodFi/method-node/releases/tag/v1.1.14) of `method-node`
* Released [version 1.1.13](https://github.com/MethodFi/method-python/releases/tag/v1.1.13) of `method-python`
