Skip to content

Supplier

Supplier-management related endpoints.

Get Suppliers

Request

Retrieves supplier information with optional filtering.

Parameters

  • ids (optional): Array of supplier IDs to filter by. If provided, only suppliers matching these IDs will be returned.

Behavior

  • With IDs: Returns only the specified suppliers (bulk retrieval)
  • Without IDs: Returns all available suppliers

Returns

A list of supplier objects containing their basic information and metadata.

Example

GET /suppliers?ids=123,456,789  // Get specific suppliers
GET /suppliers                  // Get all suppliers
Security
BearerAuth
Query
idsstring or null

The IDs of the suppliers to get. If not provided, all suppliers will be returned.

Headers
Acceptstring(SupplierAcceptHeader)required

Set this to application/api.luminovo.supplier-v1+json.

Value:"application/api.luminovo.supplier-v1+json"
GET
/suppliers
curl -i -X GET \
  'https://api.luminovo.com/suppliers?ids=string' \
  -H 'Accept: application/api.luminovo.supplier-v1+json' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'

Responses

Suppliers fetched.

Bodyapplication/json
itemsArray of objects(types.supplier.v1.SupplierResponse)required
Response
{ "items": [ {} ] }