Skip to main content
GET
/
{recordType}
/
{recordId}
/
custom-fields
Get custom field values
curl --request GET \
  --url https://{companyName}.api.joinluminous.com/external/api/v1/{recordType}/{recordId}/custom-fields \
  --header 'Authorization: Bearer <token>'
{
  "Customer PO": "PO-98765",
  "Expected Delivery": "2024-12-25",
  "Priority Level": "High",
  "Item Count": 42
}

Authorizations

Authorization
string
header
required

Authenticate using a bearer token. To obtain a token, contact [email protected]

Path Parameters

recordType
enum<string>
required

Type of record to get custom fields for

Available options:
sales-orders,
sales-order-items,
invoices,
products
recordId
integer
required

ID of the record

Response

Successful response

{key}