Skip to content

Changelog

This changelog tracks backend-relevant changes that are now reflected in the Fangate developer documentation.

It is organized by confirmed implementation areas rather than guessed release names where exact release labeling was not available.

2026-05 master / child linked creator accounts

Backend-owned account groups for the creator account switcher replace token-only trust for multi-account analytics.

Added / changed

  • account_group_members table — persistent master_user_idchild_user_id links (max 10 children per master; each child at most one master).
  • account_group on POST /api/login, POST /api/register, GET /api/user, and POST /api/login/batchrole (standalone | master | child), optional master summary, linked_accounts for masters only.
  • GET / POST / DELETE /api/user/linked-accounts — list, link (child credentials), and unlink children.
  • POST /api/user/linked-accounts/{childUserId}/session — master-only child Sanctum token for switching.
  • POST /api/dashboard/summary/aggregate — masters aggregate persisted linked children only; additional_tokens ignored; child accounts get 403 if they send it.

Client migration

  • Stop relying on storing multiple passwords/tokens alone to access the “connected set”.
  • Use account_group from login and linked-account APIs; call the child session endpoint when switching as master.
  • Child logins must not expose sibling accounts in the UI.

See Account switcher frontend integration.


2026-05 account switcher and multi-account dashboard KPIs

Documentation and bundled OpenAPI (docs/public/openapi.json) now cover creator multi-session (account switcher) flows and aggregated dashboard KPIs across multiple bearer tokens.

Added / clarified

  • POST /api/login/batch — batch creator login (up to 10 accounts); returns sessions (each with user + token) and per-row failed entries; rate limited (creator-login-batch).
  • GET /api/user/sessions / DELETE /api/user/sessions/{tokenId} — list and revoke Sanctum app sessions (api tokens only; integration API keys fangate-api-key:* are excluded).
  • GET /api/dashboard/summary — documents extended fields: currency_unified, accounts[], and conditional root wallet_balance (see Wallet).
  • POST /api/dashboard/summary/aggregate — merge the same KPI payload across the authenticated creator plus optional additional_tokens (other creators’ api tokens); trust model and multi-currency behavior documented in Wallet.
  • Auth and Authentication — batch login, session list/revoke, and multi-account switching guidance for client teams.

Swagger / OpenAPI

  • Fangate-backend: run php artisan l5-swagger:generate so /api/documentation includes the new operations after deploy.
  • Fangate-docs: copy the generated api-docs.json into docs/public/openapi.json (or use npm run sync-openapi if your pipeline wires it), then rebuild the site so Swagger UI matches.

Notes

  • Live changelog: docs.fangate.app/changelog is produced from this file when the Fangate-docs site is built and deployed; merge and run your usual docs release so the new section appears there.
  • Backend code for these endpoints ships in Fangate-backend (not only documentation).

Documentation now covers explicit creator control over how a price change is applied: update the existing sellable link’s price, or create a new priced link while keeping the original unchanged.

Added / clarified

  • PATCH /api/products/{product}/price — update price on the existing product (same short link URL); validation matches product pricing rules (minor units, minimum).
  • POST /api/products/{product}/price-links — create a new product row with a new short link and new price; optional overrides for title and descriptions; 201 Created response documented.
  • API reference semantics — clarifies that checkout amounts are driven by products.price while public URLs live on short_links, and that the “new link” flow is implemented as a duplicate product with duplicated media rows pointing at the same storage paths (no re-upload).
  • Checkout and analytics behavior — documents server-side price revalidation at checkout start, pending sessions keeping a locked price, per-link metrics, and non-retroactive historical stats (per product agreement).
  • API keys — permission matrix extended for the two new paths alongside existing product write routes.

Notes

  • Backend implementation and OpenAPI annotations ship in Fangate-backend; regenerate Swagger (php artisan l5-swagger:generate) so /api/documentation lists these operations after deploy.

2026-04 backend documentation synchronization

This documentation pass aligns docs.fangate.app with the current live Fangate backend and recent backend changes deployed across development and production.

Added / clarified

  • full upload-session documentation for resumable, multipart, and remote-import upload flows
  • current product resource fields, including folder state, collection state, downloadability, and epoch-related flags
  • content-folder endpoints and creator-side folder assignment workflow
  • current wallet and affiliate endpoints, including invitation, invitation code, invited users, and affiliate revenue coverage
  • creator-tag / third-party consent flows, including verification-required responses for tagged users
  • current Veriff and Yoti endpoint behavior, including endpoints that do not use the standard API response wrapper
  • current report, feedback, maps autocomplete, and webhook behavior
  • current environment mapping for production and development API / Swagger endpoints

Backend behavior documented from recent changes

  • resumable upload-session backend flow is now the preferred content-ingestion path
  • legacy direct upload behavior remains supported and can return async 202 responses
  • content folder support is live in the backend via:
    • GET /api/content-folders
    • POST /api/content-folders
    • PATCH /api/content-folders/{contentFolder}
    • DELETE /api/content-folders/{contentFolder}
    • PATCH /api/products/{product}/folder
  • product deletion now includes explicit cleanup of legacy consent relations
  • private/final storage behavior and legacy-upload mirroring are documented to explain current sales-link media availability handling
  • production deploy workflow hardening and main-branch checkout expectations are part of the documented release/deployment history

Swagger / OpenAPI alignment work

  • API metadata updated for production and development servers
  • missing or incomplete docs added for affiliate revenue, consent-tag endpoints, maps autocomplete, report, and Veriff decision flows
  • resource schemas updated to better match current backend fields

Earlier documented backend release areas

2026-04-15 release / production rollout areas

Confirmed backend areas represented in documentation:

  • upload-session backend for resumable/direct-to-storage uploads
  • content folders and product-folder assignment
  • media URL/storage resolution fixes across process/final disks
  • related web media access and notification changes
  • Swagger/OpenAPI coverage improvements for new backend flows

2026-04-04 documentation and platform updates

Previously documented and retained as relevant:

  • post-purchase viewer and buyer-access improvements
  • creator consent tagging improvements
  • manual-approval notification updates

Notes

  • This changelog only lists changes that were confirmed from backend code, routes, resources, annotations, and recent git history.
  • Where an exact deployment label was unclear, the change is grouped by backend area rather than an invented release number.

Fangate backend developer documentation