New Features

Dashboard Updates

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.

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

For more details, refer to the Entity Attributes API.

Entity Subscription Creation

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

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

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.

SDK Updates