FeniciaDocs
DocumentaciónAPICambiosSoporte
Buscar⌘K
Orders APIList OrdersCreate an OrderGet an OrderSearch OrdersOrder Status TransitionsUpdate an OrderFulfillment & ShippingReturns & RefundsAttachmentsActivity Log & ExportAbandoned CartsError Catalog

Producto

  • Características
  • Precios
  • Integraciones

Recursos

  • Documentación
  • API
  • Cambios
  • Blog

Empresa

  • Sobre nosotros
  • Contacto
  • Carreras

Legal

  • Privacidad
  • Términos
FeniciaLa plataforma de e-commerce para merchants profesionales

© 2026 Hobbio Inc. Todos los derechos reservados.

Activity Log & Export

Audit who did what on an order, export bulk order data to CSV for reporting, and force a sync against connected channels.

Base URL

https://api.fenicia.io

All endpoints require Authorization: Bearer fn_live_....


Get activity log

Returns the chronological audit trail for an order: status transitions, edits, fulfilment events, cancellations, refunds, etc. Requires orders:read.

curl "https://api.fenicia.io/orders/ord_123/activity-log?limit=100" \
  -H "Authorization: Bearer fn_live_your_api_key"

Action types

ActionDescription
order_createdOrder was created
order_acceptedOrder moved to accepted
status_changedGeneric status transition
order_cancelledOrder cancelled
order_fulfilledOrder fulfilled
refund_issuedRefund processed
note_addedInternal note added
attachment_addedAttachment uploaded
attachment_deletedAttachment removed

Export orders to CSV

Exports orders to a CSV file. Requires orders:export.

Column paths are required

The columns parameter is mandatory. Paths use dot-notation to reach nested fields. Common paths: externalId, orderStatus, total, subtotal, currency, createdAt, customerInfo.email, customerInfo.firstName, customerInfo.lastName, shippingAddress.city, shippingAddress.country, channelType, channelName.

curl "https://api.fenicia.io/orders/export?columns=externalId,customerInfo.email,total,orderStatus&format=csv" \
  -H "Authorization: Bearer fn_live_your_api_key" \
  -o orders.csv

Sync all orders

Queue an async sync for all orders from every connected channel. Requires orders:manage.

curl -X POST https://api.fenicia.io/orders/sync \
  -H "Authorization: Bearer fn_live_your_api_key"

Sync single order

Force sync for a single order from its source channel. Requires orders:manage.

curl -X POST https://api.fenicia.io/orders/ord_123/sync \
  -H "Authorization: Bearer fn_live_your_api_key"

Tip

Sync is asynchronous. Subscribe to order.updated webhooks or poll GET /orders/{id} to detect when the sync completes.

Next steps

  • Abandoned Carts
  • Error catalog