Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Broker API: Funding - ACH Relationships #30

Closed
drew887 opened this issue May 5, 2022 · 1 comment · Fixed by #42
Closed

Broker API: Funding - ACH Relationships #30

drew887 opened this issue May 5, 2022 · 1 comment · Fixed by #42
Assignees
Labels
Broker API Relates to the Broker API enhancement New feature or request

Comments

@drew887
Copy link
Contributor

drew887 commented May 5, 2022

This is to implement the routes found here in the docs

Need to add in the following methods to BrokerClient:

  def create_ach_relationship_for_account(
        self,
        account_id: Union[UUID, str],
        ach_data: Union[CreateACHRelationshipRequest, CreatePlaidRelationshipRequest],
  ) -> ACHRelationship:
      pass
    # needs to handle both flows of creating with raw ACH data as well as with a Plaid Token.
  
  def get_ach_relationships_for_account(
            self,
            account_id: Union[UUID, str],
            statuses: Optional[List[ACHRelationshipStatus]] = None,
  ) -> List[ACHRelationship]:
      pass

  def delete_ach_relationship_for_account(
        self,
        account_id: Union[UUID, str],
        ach_relationship_id: Union[UUID, str],
  ) -> None:
      pass
@drew887 drew887 created this issue from a note in General Development (To do) May 5, 2022
@drew887 drew887 added enhancement New feature or request Broker API Relates to the Broker API labels May 5, 2022
@drew887 drew887 added this to the Broker API Alpha Release milestone May 5, 2022
@drew887 drew887 moved this from To do to In progress in General Development May 6, 2022
@ryansdowning
Copy link
Contributor

take

@drew887 drew887 moved this from In progress to Reviewer approved in General Development May 13, 2022
General Development automation moved this from Reviewer approved to Done May 16, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Broker API Relates to the Broker API enhancement New feature or request
Projects
Development

Successfully merging a pull request may close this issue.

2 participants