├── .gitignore ├── LICENSE.txt ├── README.md ├── bin └── create-docblocs.php ├── composer.json ├── docusign-template-example.md ├── omitted_endpoints.md ├── phpunit.xml ├── src ├── Api │ ├── Accounts.php │ ├── Authentication.php │ ├── BaseApi.php │ ├── Billing.php │ ├── BulkEnvelopes.php │ ├── BulkProcessData.php │ ├── BulkProcessDataSend.php │ ├── CloudStorage.php │ ├── Comments.php │ ├── Connect.php │ ├── CustomTabs.php │ ├── DataFeed.php │ ├── Diagnostics.php │ ├── EmailArchive.php │ ├── Envelopes.php │ ├── Folders.php │ ├── Groups.php │ ├── Notary.php │ ├── Organizations.php │ ├── PowerForms.php │ ├── Signature.php │ ├── SigningGroups.php │ ├── Templates.php │ ├── TrustServiceProviders.php │ ├── Users.php │ └── Workspaces.php ├── Client.php └── Exceptions │ └── ClassNotFoundException.php └── tests ├── BaseApiTest.php ├── ClassUtils.php ├── Docs ├── SignTest1.docx └── SignTest1.pdf ├── LoginTest.php ├── SignatureRequestTest.php ├── bootstrap.php └── config.sample.php /.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | .idea 3 | tests/config.php 4 | composer.lock -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tucker-Eric/docusign-rest-client/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tucker-Eric/docusign-rest-client/HEAD/README.md -------------------------------------------------------------------------------- /bin/create-docblocs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tucker-Eric/docusign-rest-client/HEAD/bin/create-docblocs.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tucker-Eric/docusign-rest-client/HEAD/composer.json -------------------------------------------------------------------------------- /docusign-template-example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tucker-Eric/docusign-rest-client/HEAD/docusign-template-example.md -------------------------------------------------------------------------------- /omitted_endpoints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tucker-Eric/docusign-rest-client/HEAD/omitted_endpoints.md -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tucker-Eric/docusign-rest-client/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Api/Accounts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tucker-Eric/docusign-rest-client/HEAD/src/Api/Accounts.php -------------------------------------------------------------------------------- /src/Api/Authentication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tucker-Eric/docusign-rest-client/HEAD/src/Api/Authentication.php -------------------------------------------------------------------------------- /src/Api/BaseApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tucker-Eric/docusign-rest-client/HEAD/src/Api/BaseApi.php -------------------------------------------------------------------------------- /src/Api/Billing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tucker-Eric/docusign-rest-client/HEAD/src/Api/Billing.php -------------------------------------------------------------------------------- /src/Api/BulkEnvelopes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tucker-Eric/docusign-rest-client/HEAD/src/Api/BulkEnvelopes.php -------------------------------------------------------------------------------- /src/Api/BulkProcessData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tucker-Eric/docusign-rest-client/HEAD/src/Api/BulkProcessData.php -------------------------------------------------------------------------------- /src/Api/BulkProcessDataSend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tucker-Eric/docusign-rest-client/HEAD/src/Api/BulkProcessDataSend.php -------------------------------------------------------------------------------- /src/Api/CloudStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tucker-Eric/docusign-rest-client/HEAD/src/Api/CloudStorage.php -------------------------------------------------------------------------------- /src/Api/Comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tucker-Eric/docusign-rest-client/HEAD/src/Api/Comments.php -------------------------------------------------------------------------------- /src/Api/Connect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tucker-Eric/docusign-rest-client/HEAD/src/Api/Connect.php -------------------------------------------------------------------------------- /src/Api/CustomTabs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tucker-Eric/docusign-rest-client/HEAD/src/Api/CustomTabs.php -------------------------------------------------------------------------------- /src/Api/DataFeed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tucker-Eric/docusign-rest-client/HEAD/src/Api/DataFeed.php -------------------------------------------------------------------------------- /src/Api/Diagnostics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tucker-Eric/docusign-rest-client/HEAD/src/Api/Diagnostics.php -------------------------------------------------------------------------------- /src/Api/EmailArchive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tucker-Eric/docusign-rest-client/HEAD/src/Api/EmailArchive.php -------------------------------------------------------------------------------- /src/Api/Envelopes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tucker-Eric/docusign-rest-client/HEAD/src/Api/Envelopes.php -------------------------------------------------------------------------------- /src/Api/Folders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tucker-Eric/docusign-rest-client/HEAD/src/Api/Folders.php -------------------------------------------------------------------------------- /src/Api/Groups.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tucker-Eric/docusign-rest-client/HEAD/src/Api/Groups.php -------------------------------------------------------------------------------- /src/Api/Notary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tucker-Eric/docusign-rest-client/HEAD/src/Api/Notary.php -------------------------------------------------------------------------------- /src/Api/Organizations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tucker-Eric/docusign-rest-client/HEAD/src/Api/Organizations.php -------------------------------------------------------------------------------- /src/Api/PowerForms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tucker-Eric/docusign-rest-client/HEAD/src/Api/PowerForms.php -------------------------------------------------------------------------------- /src/Api/Signature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tucker-Eric/docusign-rest-client/HEAD/src/Api/Signature.php -------------------------------------------------------------------------------- /src/Api/SigningGroups.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tucker-Eric/docusign-rest-client/HEAD/src/Api/SigningGroups.php -------------------------------------------------------------------------------- /src/Api/Templates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tucker-Eric/docusign-rest-client/HEAD/src/Api/Templates.php -------------------------------------------------------------------------------- /src/Api/TrustServiceProviders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tucker-Eric/docusign-rest-client/HEAD/src/Api/TrustServiceProviders.php -------------------------------------------------------------------------------- /src/Api/Users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tucker-Eric/docusign-rest-client/HEAD/src/Api/Users.php -------------------------------------------------------------------------------- /src/Api/Workspaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tucker-Eric/docusign-rest-client/HEAD/src/Api/Workspaces.php -------------------------------------------------------------------------------- /src/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tucker-Eric/docusign-rest-client/HEAD/src/Client.php -------------------------------------------------------------------------------- /src/Exceptions/ClassNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tucker-Eric/docusign-rest-client/HEAD/src/Exceptions/ClassNotFoundException.php -------------------------------------------------------------------------------- /tests/BaseApiTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tucker-Eric/docusign-rest-client/HEAD/tests/BaseApiTest.php -------------------------------------------------------------------------------- /tests/ClassUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tucker-Eric/docusign-rest-client/HEAD/tests/ClassUtils.php -------------------------------------------------------------------------------- /tests/Docs/SignTest1.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tucker-Eric/docusign-rest-client/HEAD/tests/Docs/SignTest1.docx -------------------------------------------------------------------------------- /tests/Docs/SignTest1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tucker-Eric/docusign-rest-client/HEAD/tests/Docs/SignTest1.pdf -------------------------------------------------------------------------------- /tests/LoginTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tucker-Eric/docusign-rest-client/HEAD/tests/LoginTest.php -------------------------------------------------------------------------------- /tests/SignatureRequestTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tucker-Eric/docusign-rest-client/HEAD/tests/SignatureRequestTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tucker-Eric/docusign-rest-client/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/config.sample.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tucker-Eric/docusign-rest-client/HEAD/tests/config.sample.php --------------------------------------------------------------------------------