absuite-orders

Manage ABS orders and order lines via the Orders Service REST API.

Updated Apr 18, 2026
One-click install
npx skills add https://github.com/FenixAlliance/ABS.Agents --skill absuite-orders
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: absuite-orders
Source: https://github.com/FenixAlliance/ABS.Agents/tree/main/paperclip/skills/absuite-orders
Command: npx skills add https://github.com/FenixAlliance/ABS.Agents --skill absuite-orders

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill eliminates the tedious, error-prone manual work of managing orders, order lines, and related workflows in the Alliance Business Suite (ABS), which requires consistent tenant scoping, bearer token authentication, and strict adherence to REST API conventions for every operation.

Core Features & Use Cases

  • Full CRUD for Orders and Order Lines: Create, read, update, patch, and delete orders and their associated line items, with support for atomic JSON Patch updates to avoid concurrency issues during partial edits.
  • Automated Calculations and Cart Submission: Recalculate order and line totals (taxes, discounts, surcharges, shipping) server-side, and convert existing shopping carts to orders for authenticated users.
  • Transactional Email Management: Send and preview order confirmation emails with customizable content, recipients, and templates.
  • Use Case: An e-commerce operations team can use this Skill to automate the full order lifecycle from cart submission to confirmation email, without writing custom API integration code.

Quick Start

Use the absuite-orders skill to create a new tenant-scoped order with line items, recalculate its totals, and send a confirmation email to the customer.

Frequently Asked Questions about absuite-orders

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I manage tenant-scoped orders via REST API in the Alliance Business Suite?

Tenant-scoped order management in the Alliance Business Suite uses the Orders Service REST API to perform CRUD operations on orders and order lines. You provide a tenantId query parameter and a bearer token to authenticate requests for tenant-specific order data processing.

How do I convert a shopping cart to an order using REST API?

Shopping cart conversion to an order uses the cart submission endpoint, which is exempt from the standard tenantId query parameter requirement. Send the cart data with a bearer token to generate a completed order for the authenticated user.

How do I apply atomic partial updates to an order line without concurrency issues?

Atomic partial updates on order lines use JSON Patch requests following RFC 6902. Send standard REST verbs with a bearer token and tenantId parameter to apply granular edits safely without replacing the entire order object.

How do I recalculate order totals including taxes and shipping via API?

Order total recalculation for taxes, discounts, surcharges, and shipping is handled server-side by the ABS Orders Service. Trigger the recalculation endpoint with the correct tenantId and bearer token to update order totals automatically.

How do I send transactional order confirmation emails through an API?

Transactional order confirmation emails are sent and previewed through the ABS Orders Service REST API. Provide customizable content, recipients, and templates with your bearer token to dispatch order emails for tenant-scoped transactions.

Do I need bearer token authentication for all ABS Orders Service API calls?

Bearer token authentication is required for all ABS Orders Service REST API calls. Additionally, a tenantId query parameter is mandatory for every endpoint except cart submission to ensure proper multi-tenant order data scoping.