Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Releases: MethodFi/method-python

v2.0.0

31 Oct 23:30
eac0165

Choose a tag to compare

Merge pull request #63 from MethodFi/bilal/mthd-9409

v1.2.6

09 Sep 15:44
f24e52f

Choose a tag to compare

What's Changed

  • adds webhook status patch

Full Changelog: v1.2.5...v1.2.6

v1.2.5

29 Jul 15:13
16a4e1a

Choose a tag to compare

hmac_secret to Create Webhook type (#62)

* hmac_secret to Create Webhook type

* bump version

v1.2.4

09 Jul 23:07
c14a7af

Choose a tag to compare

change account_attribute to attribute (#61)

* change account_attribute to attribute

* bump version

v1.2.3

11 Jun 20:33
e3a5095

Choose a tag to compare

release with python 3.13 (#58)

v1.2.2

02 Jun 20:03
b0473ba

Choose a tag to compare

add source property to cardbrand (#57)

* add source property to cardbrand

* bump version

* update tests

* update entity tests

* update entity verification session types

v1.2.1

27 May 18:21
78fae8e

Choose a tag to compare

adds transaction merchants (#56)

v1.2.0

19 May 17:42
b26d249

Choose a tag to compare

  • Allows for either strings or payload to be passed when subscribing an Entity to Attributes
  • Addressed breaking change in v1.1.13

v1.1.13

02 May 18:36
cd92207

Choose a tag to compare

  • Updates entity attribute handling - there is a new payload for requesting entity attributes. Please see more details in the documentation
  • Changes entity subscription creation, please note the new payload in the documentation when upgrading to this version

For example:

response = method
  .entities('ent_TYHMaRJUUeJ7U')
  .subscriptions
  .create('credit_score')

is now:

response = method
  .entities('ent_TYHMaRJUUeJ7U')
  .subscriptions
  .create({
    enroll: 'credit_score',
  })

For attributes specifically, it will be:

response = method
  .entities('ent_TYHMaRJUUeJ7U')
  .subscriptions
  .create({
    enroll: 'attribute',
    payload: {
      attributes: {
        requested_attributes: ['credit_health_credit_card_usage', 'credit_health_derogatory_marks', ...etc.]
      }
    }
  })

v1.1.12

14 Apr 20:25
437ae41

Choose a tag to compare

What's Changed

  • adds card_brand and payment_instrument as subscribable products by @ossiggy in #53

Full Changelog: v1.1.11...1.1.12