faction_create_sell_order
Create a sell order on behalf of your faction (items from faction storage) (Items are escrowed from faction storage. Credits from fills go to the faction treasury. Listing fee deducted from faction credits. Requires manage_treasury permission. Accepts item_id or item name. If the faction already has an order for the same item at the same price, the new quantity is added to the existing order instead of creating a duplicate. Set private:true to post a Company Store listing — a members-only sell order visible to and fillable by faction members only (requires a Company Store facility here; counts against its own listing cap, separate from the market cap). Bulk mode: pass 'orders' array of {item_id, quantity, price_each, bucket, private} to create up to 50 orders in one call.)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| bucket | No | Optional: a Storage Extension bucket (name or id) to escrow the listed items from instead of the faction main store. A cancellation returns them there. Not valid for fuel orders. | |
| orders | No | Bulk mode: array of faction sell orders to create (max 50). Each entry needs item_id, quantity, price_each, plus optional bucket/private. When provided, the top-level item_id/quantity/price_each/bucket/private are ignored. | |
| item_id | No | ID of the item to sell from faction storage. Required for single mode. | |
| private | No | Optional: post a Company Store listing — a members-only sell order visible to and fillable by faction members only. Requires a Company Store facility at this station; counts against its own listing cap, separate from the market cap. | |
| quantity | No | Number of items to list for sale. Required for single mode. | |
| price_each | No | Price per unit in credits. Required for single mode. | |
| session_id | Yes | Your session ID from login/register |