Download the PHP package kruegge82/jtlffn without Composer

On this page you can find all versions of the php package kruegge82/jtlffn. 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 jtlffn

OpenAPIClient-php

Introduction

JTL-FFN is a standardized interface for fulfillment service providers and their customers. Fulfiller can offer their services to merchants and merchants can respectively choose from a wide range of service providers according to their needs.

The ecosystem

The FFN network consists of this REST API, an online portal and third party integrations (JTL-Wawi being one of them). The REST API orchestrates the interactions between the participants and the portal website provides services by JTL (such as managing and certifying warehouses of a fulfiller and merchants searching for their service providers).

About this API

The base url of this api is https://ffn2.api.jtl-software.com/api.

This API (and this documentation) consists of three parts:

Please use the navigation menu at the top to switch between the documentation for the different APIs.

OAuth

The FFN-API uses OAuth2 with the Authorization Code Grant for its endpoints. Users must have an active JTL customer center account to authorize against the OAuth2 server. Applications and services using the API must acquire client credentials from JTL.

Application credentials

When making calls against the API, you need to do it in the context of an application. You will get the credentials for your application from JTL.

Application credentials consist of the following:

Requesting authorization

When you want to authorize a user you redirect him to https://oauth2.api.jtl-software.com/authorize with the following query string parameters:

After successful authorization by the user, the OAuth2 server will redirect back to your applications callback with the following query string parameters:

Verifying authorization

The authorization code you acquired in the last step will now be exchanged for an access token. In order to do this you need to POST a request to https://oauth2.api.jtl-software.com/token.

POST https://oauth2.api.jtl-software.com/token

Authorization: Basic application_basic_auth\ Content-Type: application/x-www-form-urlencoded

grant_type=authorization_code&code=code&redirect_uri=redirect_uri

In the Authorization header Basic HTTP authentication is used. Your application credentials client_id will be used as the username and your client_secret as the password. The header should have the value \"Basic\" plus the Base64 encoded string comprising of client_id:client_secret.

The body of the request consist of the form encoded parameters:

A successful verification request will return a JSON response with the properties:

Now the APIs endpoints that need authorization can be called by setting the header

Authorization: Bearer access_token

Refreshing authorization

To get a new access_token (for example when the old one expired) one can POST a request to https://oauth2.api.jtl-software.com/token.

POST https://oauth2.api.jtl-software.com/token

Authorization: Basic application_basic_auth\ Content-Type: application/x-www-form-urlencoded

grant_type=refresh_token&refresh_token=refresh_token

The Basic HTTP Authorization works exactly as in the verification step.

The body of the request consist of the form encoded parameters:

The response will be the same as in the verification step.

Scopes

Scopes allow fine grained control over what actions are allowed for a given application. During login users must approve the requested scopes, so it is often feasible to limit asking for permissions your application really needs.

Global scopes for common permission scenarios are the following:

More fine grained scopes can be acquired from each respective endpoints documentation.

Example

Prerequsites

Values in this example (access_token, refresh_token, code...) are expired and cannot be used verbatim.

Step 1 - Create an OAuth client

Navigate to https://kundencenter.jtl-software.de/oauth and create a new OAuth client. (You can´t navigate to Oauth in customer account, you should use this link, or you can change logged in index to oauth)

!Templates define what scopes are possible for this client.

scopes with access rights:

More fine grained scopes can be acquired from each respective endpoints documentation.

Overview: clients, scopes, client-secret and client-id

In our example:

The values for this client should not be used in production and are for testing only.

Step 2 - User login

In this step you will redirect the user to the JTL OAuth website using his default browser. Here the user will provide his username/password and accept the requested scopes. Finally the JTL Oauth website will redirect to the provided redirect_uri and provide the code.

Template: authorize specified scopes and get code answer to request the access token

Note: the scopes should be seperated by spaces or %20

Filled with our example values:

Example of the answer from the OAuth server to our redirect_uri:

Extract the code and note it for next steps.

Step 3 - Get an access_token from the code

Template: get access token + refresh token

Filled with our example values:

The result will be a JSON answer with the users access_token and refresh_token as well as the expiry in seconds.

Step 4 - Test the access_token

Using your newly aquired access_token you can test if its working (reminder: the access_token has a limited lifetime and might be expired, in which case we would need to refresh it (see Step 5)).

Template: Test communication with access token on sandbox or production (our client is for both systems)

If you cannot retrieve the user data using this endpoint make sure you have logged into our respective portal website (sandbox, production) at least once as this triggers user creation in the system.

Step 5 - Refresh access_token when it expires

Template: Get a new access token + refresh token with the refresh token

Filled with our example values:

The result will be the same format as in step 3. Refresh_tokens are only valid for a single refresh and you will get a new refresh_token every single time that you must persist.

My token is not working!

404 NotFound

You need to log into the respective portal website (sandbox-https://fulfillment-sandbox.jtl-software.com, production-https://fulfillment.jtl-software.com) at least once to trigger user creation.

403 Forbidden

You might be missing scopes in your token and don't have sufficient rights.

401 Forbidden

Incorrect Oauth method. For example, we do not support the Oauth method authorisation \"client_credentials grant\". The authorisation method \"code grant\" with user must be used.

For more information, please visit https://jtl-software.com.

Installation & Usage

Requirements

PHP 7.4 and later. Should also work with PHP 8.0.

Composer

To install the bindings via Composer, add the following to composer.json:

Then run composer install

Manual Installation

Download the files and include autoload.php:

Getting Started

Please follow the installation procedure and then run the following:

API Endpoints

All URIs are relative to http://localhost

Class Method HTTP request Description
AuthorizationsApi authorizationsDeleteShippingMethodAuthorization DELETE /api/v1/fulfiller/authorizations/{merchantId}/warehouses/{warehouseId}/shippingMethods/{shippingMethodId} Delete Shipping Method Authorization
AuthorizationsApi authorizationsDeleteWarehouseAuthorization DELETE /api/v1/fulfiller/authorizations/{merchantId}/warehouses/{warehouseId} Delete Warehouse Authorization
AuthorizationsApi authorizationsGet GET /api/v1/fulfiller/authorizations/{merchantId} Get
AuthorizationsApi authorizationsGetAll GET /api/v1/fulfiller/authorizations Get All
AuthorizationsApi authorizationsGetUpdates GET /api/v1/fulfiller/authorizations/updates Get Updates
AuthorizationsApi authorizationsPostShippingMethodAuthorization POST /api/v1/fulfiller/authorizations/{merchantId}/warehouses/{warehouseId}/shippingMethods Post Shipping Method Authorization
AuthorizationsApi authorizationsPostWarehouseAuthorization POST /api/v1/fulfiller/authorizations/{merchantId}/warehouses Post Warehouse Authorization
InboundsApi inboundsClose PUT /api/v1/fulfiller/inbounds/{inboundId}/close Close
InboundsApi inboundsGet GET /api/v1/fulfiller/inbounds/{inboundId} Get
InboundsApi inboundsGetAll GET /api/v1/fulfiller/inbounds Get All
InboundsApi inboundsGetInboundShippingNotificationUpdates GET /api/v1/fulfiller/inbounds/shipping-notifications/updates Get Inbound Shipping Notification Updates
InboundsApi inboundsGetShippingNotification GET /api/v1/fulfiller/inbounds/{inboundId}/shipping-notifications/{shippingNotificationId} Get Shipping Notification
InboundsApi inboundsGetShippingNotifications GET /api/v1/fulfiller/inbounds/{inboundId}/shipping-notifications Get Shipping Notifications
InboundsApi inboundsGetUpdates GET /api/v1/fulfiller/inbounds/updates Get Updates
InboundsApi inboundsPostIncomingGoods POST /api/v1/fulfiller/inbounds/{inboundId}/incoming-goods Post Incoming Goods
InboundsApi inboundsPostIncomingGoodsBulk POST /api/v1/fulfiller/inbounds/{inboundId}/incoming-goods/bulk Post Incoming Goods Bulk
MerchantsApi merchantsGet GET /api/v1/fulfiller/merchants/{merchantId} Get
MerchantsApi merchantsGetAll GET /api/v1/fulfiller/merchants Get All
MerchantsApi merchantsGetUpdates GET /api/v1/fulfiller/merchants/updates Get Updates
OutboundsApi outboundsChangeStatus PUT /api/v1/fulfiller/outbounds/{outboundId}/status Change Status
OutboundsApi outboundsChangeStatusBulk POST /api/v1/fulfiller/outbounds/status Change Status Bulk
OutboundsApi outboundsChangeWarehouse PUT /api/v1/fulfiller/outbounds/{outboundId}/warehouse Change Warehouse
OutboundsApi outboundsGet GET /api/v1/fulfiller/outbounds/{outboundId} Get
OutboundsApi outboundsGetAll GET /api/v1/fulfiller/outbounds Get All
OutboundsApi outboundsGetOutboundAttachment GET /api/v1/fulfiller/outbounds/{outboundId}/attachments/{merchantDocumentId} Get Outbound Attachment
OutboundsApi outboundsGetShippingLabelForOutbound GET /api/v1/fulfiller/outbounds/{outboundId}/shipping-labels/{shippingLabelId} Get Shipping Label For Outbound
OutboundsApi outboundsGetShippingNotification GET /api/v1/fulfiller/outbounds/{outboundId}/shipping-notifications/{shippingNotificationId} Get Shipping Notification
OutboundsApi outboundsGetShippingNotifications GET /api/v1/fulfiller/outbounds/{outboundId}/shipping-notifications Get Shipping Notifications
OutboundsApi outboundsGetUpdates GET /api/v1/fulfiller/outbounds/updates Get Updates
OutboundsApi outboundsPostShippingLabelForOutbound POST /api/v1/fulfiller/outbounds/{outboundId}/shipping-labels Post Shipping Label For Outbound
OutboundsApi outboundsPostShippingNotification POST /api/v1/fulfiller/outbounds/{outboundId}/shipping-notifications Post Shipping Notification
ProductsApi productsGet GET /api/v1/fulfiller/products/{jfsku} Get
ProductsApi productsGetAll GET /api/v1/fulfiller/products Get All
ProductsApi productsGetPicture GET /api/v1/fulfiller/products/{jfsku}/pictures/{number} Get Picture
ProductsApi productsGetPictureData GET /api/v1/fulfiller/products/{jfsku}/pictures/{number}/data Get Picture Data
ProductsApi productsGetUpdates GET /api/v1/fulfiller/products/updates Get Updates
ProductsApi productsPostRelated POST /api/v1/fulfiller/products/{jfsku}/related-products/condition Post Related
ReturnsApi returnsDelete DELETE /api/v1/fulfiller/returns/{returnId} Delete
ReturnsApi returnsDeleteReturnItem DELETE /api/v1/fulfiller/returns/{returnId}/items/{returnItemId} Delete Return Item
ReturnsApi returnsGet GET /api/v1/fulfiller/returns/{returnId} Get
ReturnsApi returnsGetAll GET /api/v1/fulfiller/returns Get All
ReturnsApi returnsGetChanges GET /api/v1/fulfiller/returns/changes Get Changes
ReturnsApi returnsGetChangesFromReturn GET /api/v1/fulfiller/returns/{returnId}/changes Get Changes for specific for specific Return
ReturnsApi returnsGetReturnItem GET /api/v1/fulfiller/returns/{returnId}/items/{returnItemId} Get Return Item
ReturnsApi returnsGetUpdates GET /api/v1/fulfiller/returns/updates Get Updates
ReturnsApi returnsLock PUT /api/v1/fulfiller/returns/{returnId}/lock Lock
ReturnsApi returnsPatch PATCH /api/v1/fulfiller/returns/{returnId} Patch
ReturnsApi returnsPatchReturnItem PATCH /api/v1/fulfiller/returns/{returnId}/items/{returnItemId} Patch Return Item
ReturnsApi returnsPost POST /api/v1/fulfiller/returns Post
ReturnsApi returnsPostIncomingReturnItem POST /api/v1/fulfiller/returns/{returnId}/items/{returnItemId}/incomming-goods Post Incoming Return Item
ReturnsApi returnsPostReturnItem POST /api/v1/fulfiller/returns/{returnId}/items Post Return Item
ReturnsApi returnsSplitReturnItem POST /api/v1/fulfiller/returns/{returnId}/items/{returnItemId} Split Return Item
ReturnsApi returnsUnlock PUT /api/v1/fulfiller/returns/{returnId}/unlock Unlock
ShippingMethodsApi shippingMethodsDelete DELETE /api/v1/fulfiller/shippingmethods/{shippingMethodId} Delete
ShippingMethodsApi shippingMethodsGet GET /api/v1/fulfiller/shippingmethods/{shippingMethodId} Get
ShippingMethodsApi shippingMethodsGetAll GET /api/v1/fulfiller/shippingmethods Get All
ShippingMethodsApi shippingMethodsGetUpdates GET /api/v1/fulfiller/shippingmethods/updates Get Updates
ShippingMethodsApi shippingMethodsPost POST /api/v1/fulfiller/shippingmethods Post
ShippingMethodsApi shippingMethodsUpdate PATCH /api/v1/fulfiller/shippingmethods/{shippingMethodId} Update
StocksApi stocksGetRecentStockChanges GET /api/v1/fulfiller/stocks/updates Get Recent Stock Changes Updates
StocksApi stocksGetStock GET /api/v1/fulfiller/stocks/{jfsku} Get Stock
StocksApi stocksGetStockChangesAll GET /api/v1/fulfiller/stocks/changes Get Stock Changes All
StocksApi stocksGetStockChangesInWarehouseAll GET /api/v1/fulfiller/stocks/changes/{warehouseId} Get Stock Changes In Warehouse All
StocksApi stocksGetStockInWarehouse GET /api/v1/fulfiller/stocks/{jfsku}/{warehouseId} Get Stock In Warehouse
StocksApi stocksGetStocksAll GET /api/v1/fulfiller/stocks Get Stocks All
StocksApi stocksGetStocksInWarehouseAll GET /api/v1/fulfiller/stocks/warehouse/{warehouseId} Get Stocks In Warehouse All
StocksApi stocksPostAdjustment POST /api/v1/fulfiller/stocks/adjustments Post Adjustment
WarehousesApi warehousesDelete DELETE /api/v1/fulfiller/warehouses/{warehouseId} Delete
WarehousesApi warehousesGet GET /api/v1/fulfiller/warehouses/{warehouseId} Get
WarehousesApi warehousesGetAll GET /api/v1/fulfiller/warehouses Get All
WarehousesApi warehousesGetUpdates GET /api/v1/fulfiller/warehouses/updates Get Updates
WarehousesApi warehousesPost POST /api/v1/fulfiller/warehouses Post
WarehousesApi warehousesUpdate PATCH /api/v1/fulfiller/warehouses/{warehouseId} Update

Models

Authorization

Endpoints do not require authorization.

Tests

To run the tests, use:

Author

[email protected]

About this package

This PHP package is automatically generated by the OpenAPI Generator project:


All versions of jtlffn with dependencies

PHP Build Version
Package Version
Requires php Version ^7.4 || ^8.0
ext-curl Version *
ext-json Version *
ext-mbstring Version *
guzzlehttp/guzzle Version ^7.3
guzzlehttp/psr7 Version ^1.7 || ^2.0
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 kruegge82/jtlffn contains the following files

Loading the files please wait ....