Skip to main content
GET
/
manufacturers
Query Manufacturers
curl --request GET \
  --url https://api.jtl-cloud.com/erp/manufacturers \
  --header 'Authorization: Bearer <token>' \
  --header 'x-tenant-id: <x-tenant-id>'
[
  {
    "Id": 123,
    "Name": "<string>",
    "Description": "<string>",
    "Homepage": "<string>",
    "SortNumber": 123,
    "MetaTitle": "<string>",
    "MetaKeywords": "<string>",
    "MetaDescription": "<string>"
  }
]

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Headers

x-tenant-id
string<uuid>
required

The tenant ID for the target ERP instance.

x-runas
string

The User-Id (int or uuid) on whose behalf the request is executed. Requires scope 'Application.RunAs'.

x-companyid
string

The Company-Id (int or uuid) of the company on whose behalf the request is executed.

Response

Returns all manufacturers.

Id
integer<int32>
required

Unique ID to identify a manufacturer.

Name
string
required

Name of the manufacturer.

Description
string
required

Manufacturer description.

Homepage
string
required

Homepage of the manufacturer.

SortNumber
integer<int32>
required

Sorting number of the manufacturer.

MetaTitle
string
required

Meta title of the manufacturer.

MetaKeywords
string
required

Meta keywords of the manufacturer.

MetaDescription
string
required

Meta description of the manufacturer.