Skip to main content
PUT
/
{recordType}
/
{recordId}
/
custom-fields
Update custom field values
curl --request PUT \
  --url https://{companyName}.api.joinluminous.com/external/api/v1/{recordType}/{recordId}/custom-fields \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "Customer PO": "PO-98765",
  "Expected Delivery": "2024-12-25",
  "Priority Level": "High",
  "Item Count": 42
}
'
{
  "message": "Custom fields updated successfully"
}

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 update custom fields for

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

ID of the record

Body

application/json
{key}

Response

Custom fields updated successfully

message
string
Example:

"Custom fields updated successfully"