Skip to main content
GET
/
suppliers
/
{supplierId}
Supplier
curl --request GET \
  --url https://{companyName}.api.joinluminous.com/external/api/v1/suppliers/{supplierId} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": 42,
    "status": 1,
    "name": "Acme Manufacturing",
    "created_at": "2026-04-20T14:30:00Z",
    "updated_at": "2026-04-20T14:30:00Z",
    "created_by": 100,
    "updated_by": 100,
    "description": "Primary overseas supplier for apparel",
    "street_address": "123 Industrial Way",
    "city": "Shenzhen",
    "state": "Guangdong",
    "zip": "518000",
    "country": "China",
    "factory_admin_id": 100,
    "supplier_admin_id": 100,
    "contact_name": "Jane Doe",
    "contact_email": "jane@acme.example",
    "contact_phone": "+86 755 1234 5678",
    "bank_name": "Bank of China",
    "routing_number": "021000021",
    "account_number": "1234567890",
    "swift_code": "BKCHCNBJ",
    "default_payment_term": "Net 30",
    "contacts": [
      {
        "id": 501,
        "name": "Jane Doe",
        "email": "jane@acme.example",
        "phone": "+86 755 1234 5678"
      }
    ]
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.joinluminous.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Authenticate using a bearer token. To create a token, navigate to /settings/api-tokens and click Create API Token.

Path Parameters

supplierId
integer
required

The unique identifier of the supplier

Response

Supplier details

data
object