Download the PHP package tilta-io/tilta-php-sdk without Composer

On this page you can find all versions of the php package tilta-io/tilta-php-sdk. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package tilta-php-sdk

Usage

General usage

For every request there is a

Get a \Tilta\Sdk\HttpClient\TiltaClient-instance

Use the \Tilta\Sdk\Util\TiltaClientFactory to get a new instance.

The factory will store the generated TiltaClient-instance in a static variable. So it will not produce a new request, if you request a new TiltaClient-instance.

Provide a boolean as second parameter to define if the request goes against the sandbox or not.

Get an instance of a request service

You can simply create a new instance of the corresponding service.

Example:

You must not provide the TiltaClient via the constructor, but you should set it, before calling execute on the request service.

Example:

Models

Request models: Validation

Every field of a request model (not response models) will be validated automatically, during calling its setter. If you provide a wrong value or in an invalid format, an \Tilta\Sdk\Exception\Validation\InvalidFieldException will be thrown.

You can disable this automatic validation, by calling the method setValidateOnSet on the model:

The model got validate at least by the request service, to make sure that all data has been provided, and you will get no validation exception through the gateway.

Response models

Every response model is set to be read-only.

You can not set any fields on this model. You will get a BadMethodCallException.

Requests

This documentation should not explain the whole usage of each request. It should only show the main information about each request, and the main usage.

Please have a look into the corresponding documentation of each API Request.

GetBuyerAuthTokenRequest

Api documentation Link
Request service \Tilta\Sdk\Service\Request\Buyer\GetBuyerAuthTokenRequest
Request model \Tilta\Sdk\Model\Request\Buyer\GetBuyerAuthTokenRequestModel
Response model \Tilta\Sdk\Model\Response\Buyer\GetBuyerAuthTokenResponseModel

Use this service to generate JWT token for the buyer, so he can use the buyer-onboarding requests.

Usage

GetBuyerDetailsRequest

Api documentation Link
Request service \Tilta\Sdk\Service\Request\Buyer\GetBuyerDetailsRequest
Request model \Tilta\Sdk\Model\Request\Buyer\GetBuyerDetailsRequestModel
Response model \Tilta\Sdk\Model\Buyer

Use this service to fetch a buyer from the gateway by its external-id (of the merchant)

Usage

GetBuyerListRequest

Api documentation Link
Request service \Tilta\Sdk\Service\Request\Buyer\GetBuyerListRequest
Request model \Tilta\Sdk\Model\Request\Buyer\GetBuyersListRequestModel
Response model \Tilta\Sdk\Model\Response\Buyer\GetBuyersListResponseModel

Use this service to get all buyers. Use limit & offset to navigate through the pages.

Usage

CreateBuyerRequest

Api documentation Link
Request service \Tilta\Sdk\Service\Request\Buyer\CreateBuyerRequest
Request model \Tilta\Sdk\Model\Buyer
Response model true

Use this service to create a new buyer.

Usage

UpdateBuyerRequest

Api documentation Link
Request service \Tilta\Sdk\Service\Request\Buyer\UpdateBuyerRequest
Request model \Tilta\Sdk\Model\Request\Buyer\UpdateBuyerRequestModel
Response model true

Use this service to update buyers data.

You must not provide all buyers data, just these data, which you want to update. If you want to update a sub-object ( e.g. contactPersons or businessAddress), you have to provide all data (of the sub-object), to prevent validation issues. This behaviour may change in the future.

Usage

CreateFacilityRequest

Api documentation Link
Request service \Tilta\Sdk\Service\Request\Facility\CreateFacilityRequest
Request model \Tilta\Sdk\Model\Request\Facility\CreateFacilityRequestModel
Response model true

Use this service to create a new facility for a buyer.

Usage

GetFacilityRequest

Api documentation Link
Request service \Tilta\Sdk\Service\Request\Facility\GetFacilityRequest
Request model \Tilta\Sdk\Model\Request\Facility\GetFacilityRequestModel
Response model \Tilta\Sdk\Model\Response\Facility\GetFacilityResponseModel

Use this service to get the active facility for a buyer.

Usage

Expected exceptions thrown by service

\Tilta\Sdk\Exception\GatewayException\Facility\NoActiveFacilityFoundException if the buyer does not have an active facility
Tilta\Sdk\Exception\GatewayException\NotFoundException\BuyerNotFoundException if the buyer does not exist.

CreateOrderRequest

Api documentation Link
Request service \Tilta\Sdk\Service\Request\Order\CreateOrderRequest
Request model \Tilta\Sdk\Model\Request\Order\CreateOrderRequestModel
Response model \Tilta\Sdk\Model\Order

Use this service to create a new order for a buyer.

Usage

Expected exceptions thrown by service

\Tilta\Sdk\Exception\GatewayException\NotFoundException\BuyerNotFoundException if the buyer does not exist.
\Tilta\Sdk\Exception\GatewayException\Facility\NoActiveFacilityFoundException if the buyer does not have an active facility.
\Tilta\Sdk\Exception\GatewayException\Facility\FacilityExceededException if the buyer have an active facility but the order would exceed the limit.
\Tilta\Sdk\Exception\GatewayException\NotFoundException\MerchantNotFoundException if the provided merchant does not exist.

GetOrderDetailsRequest

Api documentation Link
Request service \Tilta\Sdk\Service\Request\Order\GetOrderDetailsRequest
Request model \Tilta\Sdk\Model\Request\Order\GetOrderDetailsRequestModel
Response model \Tilta\Sdk\Model\Order

Use this service to fetch order by the external-id.

Usage

Expected exceptions thrown by service

\Tilta\Sdk\Exception\GatewayException\NotFoundException\OrderNotFoundException if the order does not exist.

GetOrderListRequest

Api documentation Link
Request service \Tilta\Sdk\Service\Request\Order\GetOrderListRequest
Request model \Tilta\Sdk\Model\Request\Order\GetOrderListRequestModel
Response model \Tilta\Sdk\Model\Response\Order\GetOrderListResponseModel

Use this service to fetch all orders.

Usage

CancelOrderRequest

Api documentation Link
Request service \Tilta\Sdk\Service\Request\Order\CancelOrderRequest
Request model \Tilta\Sdk\Model\Request\Order\CancelOrderRequestModel
Response model \Tilta\Sdk\Model\Order

Use this service to cancel the order (if it hasn't been invoiced yet).

Please note: If the request was successful, an order-object is returned, instead of a boolean!

Usage

Expected exceptions thrown by service

\Tilta\Sdk\Exception\GatewayException\NotFoundException\OrderNotFoundException if the order does not exist.
\Tilta\Sdk\Exception\GatewayException\NotFoundException\OrderIsCanceledException if the order has been already canceled.

CancelOrderRequest

Api documentation Link
Request service \Tilta\Sdk\Service\Request\Order\GetOrderListForBuyerRequest
Request model \Tilta\Sdk\Model\Request\Order\GetOrderListForBuyerRequestModel
Response model \Tilta\Sdk\Model\Response\Order\GetOrderListForBuyerResponseModel

Use this service to fetch all orders for given buyer.

Usage

Expected exceptions thrown by service

\Tilta\Sdk\Exception\GatewayException\NotFoundException\BuyerNotFoundException if the given buyer does not exist.

GetPaymentTermsRequest

Api documentation Link
Request service \Tilta\Sdk\Service\Request\PaymentTerm\GetPaymentTermsRequest
Request model \Tilta\Sdk\Model\Request\PaymentTerm\GetPaymentTermsRequestModel
Response model \Tilta\Sdk\Model\Response\PaymentTerm\GetPaymentTermsResponseModel

Use this service to get the payment terms for an order, which would/may be placed.

Usage

Expected exceptions thrown by service

\Tilta\Sdk\Exception\GatewayException\NotFoundException\BuyerNotFoundException if the given buyer does not exist.
\Tilta\Sdk\Exception\GatewayException\NotFoundException\MerchantNotFoundException if the given merchant does not exist.
\Tilta\Sdk\Exception\GatewayException\Facility\FacilityExceededException if the buyer have an active facility but the order would exceed the limit.

AddOrdersToBuyerRequest

Api documentation Link
Request service \Tilta\Sdk\Service\Request\Order\AddOrdersToBuyerRequest
Request model \Tilta\Sdk\Model\Request\Order\AddOrdersToBuyerRequestModel
Response model \Tilta\Sdk\Model\Response\Order\AddOrdersToBuyerResponseModel

Use this service to add existing orders, which are not processed by Tilta, to the buyer debtor.

Please note: The ExistingOrder-Model is just a subclass of the Order-Model. The difference is, that you can not set the buyerExternalId for the order, because this value has to be set on the request-model (once). So please make sure that you only provide orders, for one single buyer.

Usage

Expected exceptions thrown by service

\Tilta\Sdk\Exception\GatewayException\NotFoundException\BuyerNotFoundException if the given buyer does not exist.
\Tilta\Sdk\Exception\GatewayException\NotFoundException\MerchantNotFoundException if the given merchant for at least one order does not exist.

CreateInvoiceRequest

Api documentation Link
Request service \Tilta\Sdk\Service\Request\Invoice\CreateInvoiceRequest
Request model \Tilta\Sdk\Model\Request\Invoice\CreateInvoiceRequestModel
Response model \Tilta\Sdk\Model\Invoice

Use this service to create a new invoice for (multiple) orders.

Please note: In most cases, the invoice_number is the same as the external_id. The invoice_number is the official printed number on the invoice document, while the external_id is the internal identifier of the invoice in your system. You may submit the invoice_number as the external_id as well if you don't want to submit a separate number.

However, please remember that you always have to use the external_id in future requests as reference to the invoice. So if you are using the invoice_number as the external_id, you have to submit the "invoice number" as the external_id.

Usage

Expected exceptions thrown by service

TODO TODO
TODO TODO

GetInvoiceRequest

Api documentation Link
Request service \Tilta\Sdk\Service\Request\Invoice\GetInvoiceRequest
Request model \Tilta\Sdk\Model\Request\Invoice\GetInvoiceRequestModel
Response model \Tilta\Sdk\Model\Invoice

Use this service to fetch a single invoice.

Usage

Expected exceptions thrown by service

\Tilta\Sdk\Exception\GatewayException\NotFoundException\InvoiceNotFoundException if the invoice does not exist.

GetInvoiceRequestModel

Api documentation Link Link (Buyers)
Request service \Tilta\Sdk\Service\Request\Invoice\GetInvoiceListRequest
Request model \Tilta\Sdk\Model\Request\Invoice\GetInvoiceRequestModel
Response model \Tilta\Sdk\Model\Response\Invoice\GetInvoiceListResponseModel

Use this service to fetch all invoices. Optional: You can filter by the buyer-id

Usage

Expected exceptions thrown by service

\Tilta\Sdk\Exception\GatewayException\NotFoundException\MerchantNotFoundException if the given merchant does not exist.

CreateCreditNoteRequest

Api documentation Link
Request service \Tilta\Sdk\Service\Request\CreditNote\CreateCreditNoteRequest
Request model \Tilta\Sdk\Model\Request\CreditNote\CreateCreditNoteRequestModel
Response model \Tilta\Sdk\Model\CreditNote

Use this service to create a new credit note for a buyer

Usage

Expected exceptions thrown by service

\Tilta\Sdk\Exception\GatewayException\NotFoundException\BuyerNotFoundException if the given buyer does not exist.
\Tilta\Sdk\Exception\GatewayException\InvoiceForCreditNoteNotFound if order(s) got not found or order(s) does not have an invoice.

CreateSepaMandateRequest

Api documentation Link
Request service \Tilta\Sdk\Service\Request\SepaMandate\GetSepaMandateListRequest
Request model \Tilta\Sdk\Model\Request\SepaMandate\GetSepaMandateListRequestModel
Response model \Tilta\Sdk\Model\Response\SepaMandate\GetSepaMandateListResponseModel

Use this service to list all sepa mandates of a buyer.

Usage

Expected exceptions thrown by service

\Tilta\Sdk\Exception\GatewayException\NotFoundException\BuyerNotFoundException if the given buyer does not exist.
\Tilta\Sdk\Exception\GatewayException\SepaMandate\DuplicateSepaMandateException if a SEPA mandate with the same Iban does already exist
\Tilta\Sdk\Exception\GatewayException\SepaMandate\InvalidIbanException if the iban is not valid

GetSepaMandateListRequest

Api documentation Link
Request service \Tilta\Sdk\Service\Request\SepaMandate\CreateSepaMandateRequest
Request model \Tilta\Sdk\Model\Request\SepaMandate\CreateSepaMandateRequestModel
Response model \Tilta\Sdk\Model\Response\SepaMandate

Use this service to create a SEPA mandate for the given buyer

Usage

Expected exceptions thrown by service

\Tilta\Sdk\Exception\GatewayException\NotFoundException\BuyerNotFoundException if the given buyer does not exist.

GetLegalFormsRequest

Api documentation Link
Request service \Tilta\Sdk\Service\Request\Util\GetLegalFormsRequest
Request model \Tilta\Sdk\Model\Request\Util\GetLegalFormsRequestModel
Response model \Tilta\Sdk\Model\Response\Util\GetLegalFormsResponseModel

Use this service to fetch all legal forms, which would be available for given country.

Usage

Expected exceptions thrown by service

Please note: This service will handle automatically the error if the country code is unknown/invalid. It will return empty item-list.

Additional features

Logging

you can enable logging all API Requests. (maybe we will log other things in the future, too).

You just have to give us an instance of \Psr\Log\LoggerInterface. This could be a logger of the popular monolog/monolog package.

Please note, you can only pass a logger of the mentioned interface. If you have a custom logger, you have to implement the interface. Do not forget to install the package psr/log.

Please note: you should not set a debug-logger in production, because this will log all requests (successful and failed). If you only set a ERROR-Handler it will only log all failed requests.

Example:


All versions of tilta-php-sdk with dependencies

PHP Build Version
Package Version
Requires php Version ^8.1
ext-curl Version *
ext-json Version *
ext-mbstring Version *
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package tilta-io/tilta-php-sdk contains the following files

Loading the files please wait ....