Skip to content

Commit 015bd09

Browse files
fix text
1 parent 60209b2 commit 015bd09

File tree

8 files changed

+35
-19
lines changed

8 files changed

+35
-19
lines changed

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,10 @@ is as easy as sending a text message to your client!
4949
- [CorporateBalance](#get-your-corporatebalance): View your corporate balance
5050
- [CorporateTransactions](#query-corporatetransactions): View the transactions that have affected your corporate balance
5151
- [CorporateEnums](#corporate-enums): Query enums related to the corporate purchases, such as merchant categories, countries and card purchase methods
52-
- [MerchantCard](#query-merchantcard): The Merchant Card resource stores information about cards used in approved purchases. These cards can be used in new purchases without the need to create a new session.
53-
- [MerchantSession](#create-a-merchantsession): The Merchant Session allows you to create a session prior to a purchase. Sessions are essential for defining the parameters of a purchase, including funding type, expiration, 3DS, and more.
54-
- [MerchantPurchase](#create-a-merchantpurchase): The Merchant Purchase resource can be used to charge customers with credit or debit cards. If a card hasn't been used before, a Merchant Session Purchase must be created and approved with that specific card before it can be used directly in a Merchant Purchase.
55-
- [MerchantInstallment](#query-merchantinstallment): Merchant Installments are created for every installment in a purchase. These resources will track its own due payment date and settlement lifecycle.
52+
- [MerchantCard](#query-merchantcards): Stores information about approved purchase cards for reuse.
53+
- [MerchantSession](#create-a-merchantsession): Manages a session to create a purchase with a new card.
54+
- [MerchantPurchase](#create-a-merchantpurchase): Allows a merchant to charge their customers using debit or credit cards. If the card is new, it is mandatory to create a MerchantSession first. If not, you can send a MerchantPurchase with a cardId.
55+
- [MerchantInstallment](#query-merchantinstallments): Tracks the lifecycle of purchase installments, allowing the merchant to check its settlement and reconcile their purchases.
5656
- [Split](#query-splits): Split received Invoice payments between different receivers
5757
- [SplitReceiver](#create-splitreceivers): Receiver of an Invoice split
5858
- [Webhooks](#create-a-webhook-subscription): Configure your webhook endpoints and subscriptions
@@ -2337,7 +2337,7 @@ log = starkbank.splitreceiver.log.get("5155165527080960")
23372337
print(log)
23382338
```
23392339

2340-
## Query MerchantCard
2340+
## Query MerchantCards
23412341

23422342
Get a list of merchant cards in chunks of at most 100. If you need smaller chunks, use the limit parameter.
23432343

@@ -2518,7 +2518,7 @@ merchant_purchase = starkbank.merchantpurchase.get('5950134772826112')
25182518
print(merchant_purchase)
25192519
```
25202520

2521-
## Query MerchantInstallment
2521+
## Query MerchantInstallments
25222522

25232523
Get a list of merchant installments in chunks of at most 100. If you need smaller chunks, use the limit parameter.
25242524

starkbank/merchantcard/log/__log.py

+5-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77

88
class Log(Resource):
9-
"""# MerchantCard.Log object
9+
"""# merchantcard.Log object
1010
Check out our API Documentation at https://starkbank.com/docs/api#merchant-card
1111
"""
1212

@@ -26,12 +26,15 @@ def get(id, user=None):
2626
return rest.get_id(resource=_resource, id=id, user=user)
2727

2828

29-
def query(limit=None, after=None, before=None, user=None):
29+
def query(limit=None, status=None, tags=None, ids=None, after=None, before=None, user=None):
3030
return rest.get_stream(
3131
resource=_resource,
3232
limit=limit,
3333
after=check_date(after),
3434
before=check_date(before),
35+
status=status,
36+
tags=tags,
37+
ids=ids,
3538
user=user,
3639
)
3740

starkbank/merchantinstallment/log/__log.py

+5-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77

88
class Log(Resource):
9-
"""# MerchantInstallment.Log object
9+
"""# merchantinstallment.Log object
1010
Check out our API Documentation at https://starkbank.com/docs/api#merchant-installment
1111
"""
1212

@@ -26,12 +26,15 @@ def get(id, user=None):
2626
return rest.get_id(resource=_resource, id=id, user=user)
2727

2828

29-
def query(limit=None, after=None, before=None, user=None):
29+
def query(limit=None, status=None, tags=None, ids=None, after=None, before=None, user=None):
3030
return rest.get_stream(
3131
resource=_resource,
3232
limit=limit,
3333
after=check_date(after),
3434
before=check_date(before),
35+
status=status,
36+
tags=tags,
37+
ids=ids,
3538
user=user,
3639
)
3740

starkbank/merchantpurchase/log/__log.py

+5-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77

88
class Log(Resource):
9-
"""# MerchantPurchase.Log object
9+
"""# merchantpurchase.Log object
1010
Check out our API Documentation at https://starkbank.com/docs/api#merchant-purchase
1111
"""
1212

@@ -26,16 +26,18 @@ def get(id, user=None):
2626
return rest.get_id(resource=_resource, id=id, user=user)
2727

2828

29-
def query(limit=None, after=None, before=None, user=None):
29+
def query(limit=None, status=None, tags=None, ids=None, after=None, before=None, user=None):
3030
return rest.get_stream(
3131
resource=_resource,
3232
limit=limit,
3333
after=check_date(after),
3434
before=check_date(before),
35+
status=status,
36+
tags=tags,
37+
ids=ids,
3538
user=user,
3639
)
3740

38-
3941
def page(cursor=None, limit=None, after=None, before=None, types=None, ids=None, user=None):
4042
return rest.get_page(
4143
resource=_resource,

starkbank/merchantsession/__merchantsession.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ class MerchantSession(Resource):
1212
Check out our API Documentation at https://starkbank.com/docs/api#merchant-session
1313
"""
1414

15-
def __init__(self, allowed_funding_types, allowed_installments, expiration, id=None, allowed_ips=None, challenge_mode=None, created=None, status=None, tags=None, updated=None, uuid=None):
15+
def __init__(self, allowed_funding_types, allowed_installments, expiration, id=None, allowed_ips=None,
16+
challenge_mode=None, created=None, status=None, tags=None, updated=None, uuid=None):
1617
Resource.__init__(self, id=id)
1718

1819
self.allowed_funding_types = allowed_funding_types

starkbank/merchantsession/__purchase.py

+6-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,12 @@ class Purchase(Resource):
77
Check out our API Documentation at https://starkbank.com/docs/api#merchant-session
88
"""
99

10-
def __init__(self, amount, card_expiration, card_number, card_security_code, holder_name, funding_type, id=None, holder_email=None, holder_phone=None, installment_count=None, billing_country_code=None, billing_city=None, billing_state_code=None, billing_street_line_1=None, billing_street_line_2=None, billing_zip_code=None, metadata=None, card_ending=None, card_id=None, challenge_mode=None, challenge_url=None, created=None, currency_code=None, end_to_end_id=None, fee=None, network=None, source=None, status=None, tags=None, updated=None):
10+
def __init__(self, amount, card_expiration, card_number, card_security_code, holder_name, funding_type, id=None,
11+
holder_email=None, holder_phone=None, installment_count=None, billing_country_code=None,
12+
billing_city=None, billing_state_code=None, billing_street_line_1=None, billing_street_line_2=None,
13+
billing_zip_code=None, metadata=None, card_ending=None, card_id=None, challenge_mode=None,
14+
challenge_url=None, created=None, currency_code=None, end_to_end_id=None, fee=None, network=None,
15+
source=None, status=None, tags=None, updated=None):
1116
Resource.__init__(self, id=id)
1217

1318
self.amount = amount

starkbank/merchantsession/log/__log.py

+5-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77

88
class Log(Resource):
9-
"""# Log object
9+
"""# merchantsession.Log object
1010
Check out our API Documentation at https://starkbank.com/docs/api#merchant-session
1111
"""
1212

@@ -25,12 +25,15 @@ def get(id, user=None):
2525
return rest.get_id(resource=_resource, id=id, user=user)
2626

2727

28-
def query(limit=None, after=None, before=None, user=None):
28+
def query(limit=None, status=None, tags=None, ids=None, after=None, before=None, user=None):
2929
return rest.get_stream(
3030
resource=_resource,
3131
limit=limit,
3232
after=check_date(after),
3333
before=check_date(before),
34+
status=status,
35+
tags=tags,
36+
ids=ids,
3437
user=user,
3538
)
3639

tests/sdk/test_corporate_card_log.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
from random import choice
2-
31
import starkbank
42
from unittest import TestCase, main
53
from tests.utils.user import exampleProject
64

5+
76
starkbank.user = exampleProject
87

98

0 commit comments

Comments
 (0)