Update Affiliate Sale
Updates an existing affiliate sale that was created via the Public API (website, ios, or android with manual attribution). Only sales created through POST /affiliate_sales can be updated. Commission is automatically recalculated if total is updated without specifying commission.
POST /affiliate_sales, including website, ios, and android with manual attribution) can be updated with this endpoint. Sales from other sources (e.g., Shopify, SDK cart attribution) cannot be modified via this API.
Important Behavior
- Commission recalculation: If you update
totalwithout providingcommission, the commission will be automatically recalculated based on campaign rules. - Audit logging: Every successful update is recorded in an internal audit log for support and debugging purposes.
- Cancelled sales: Sales with status
cancelledcannot be updated.
Path Parameters
Request Body
All fields are optional. Only include the fields you want to update.Request Example
Update the total and let commission recalculate:Response Example
200 OK - Sale updated successfully:Response Fields
Error Responses
404 Not Found - Sale does not exist or does not belong to your organization:Use Cases
This endpoint is useful for:- Order Adjustments: Update the total when an order is modified (e.g., partial refund, add-ons)
- Commission Corrections: Override the commission for special cases or promotions
- Status Management: Mark sales as paid or cancelled
- Data Corrections: Fix customer information or sale dates
- Sync with External Systems: Keep Growi in sync when orders are modified in your system
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
ID of the affiliate sale to update
Body
Total amount in cents. If provided without commission, commission is recalculated automatically.
Subtotal in cents
Currency code
usd, eur, gbp When the sale occurred (ISO 8601 string or Unix timestamp)
When the commission becomes due (ISO 8601 string or Unix timestamp)
Customer email address
Customer name
Commission amount in cents. Omit to auto-recalculate when total is updated.
Sale status
unpaid, paid, paid_externally, cancelled Custom source/sub-ID tag (e.g., instagram, youtube) for platform-level tracking
"instagram"
Response
Affiliate sale updated successfully