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

added missing parameter to uploadDocument() #51

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

rahulcj96
Copy link

@rahulcj96 rahulcj96 commented Sep 7, 2021

Fixes #50
example for Doc:

<?php
$customersApi = new DwollaSwagger\CustomersApi($apiClient);

$customerUrl = 'https://api.dwolla.com/customers/53863b11-1758-47c8-821f-00e6a126f97f';
$document = $customersApi->updateCustomer([
  'file' => 'John',
  'documentType' => 'other',
], $customerUrl);

$document; # => "https://api.dwolla.com/documents/fb919e0b-ffbe-4268-b1e2-947b44328a16"
?>

function to upload verification document was missing body params
Copy link

@jbaop jbaop left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Works as implemented. It would be great to have documentation about how to call the uploadDocument() method.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Uploading a document - Incomplete function, example missing in docs.
2 participants