Skip to main content
POST
/
fulfillment-orders
/
{id}
/
remove-so-item
Remove sales order line from fulfillment order
curl --request POST \
  --url https://{companyName}.api.joinluminous.com/external/api/v1/fulfillment-orders/{id}/remove-so-item \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "sales_order_item_id": 2,
  "allow_pushed": false
}
'
{
  "data": {
    "success": true,
    "message": "<string>"
  }
}

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

id
integer
required

ID of the fulfillment order

Body

application/json
sales_order_item_id
integer
required
Required range: x >= 1
allow_pushed
boolean
default:false

When true, allows removal even if the FO has already been pushed to its destination OMS.

Response

Removed

data
object