Skip to main content

August 31, 2026

· 4 min read

This release enhances referral program tracking and invoice management capabilities. Developers can now access detailed referral statistics, retrieve invoice receipt URLs, and view enriched currency formatting information for referral rewards. Additionally, account status responses now include referee service fee discount information for billing transparency.

  • GET /platform/referral_code now returns referral statistics, enabling developers to track referral performance metrics directly through the API
  • GET /invoices now includes receipt URLs for each invoice in the list, allowing clients to provide direct download links to payment receipts
  • GET /invoices/{id} now includes a receipt URL, enabling clients to retrieve and display the payment receipt for a specific invoice
  • GET /platform/referral_program now provides detailed currency formatting information for reward amounts, including symbol, position, decimal formatting, ISO code, and formatted string representation for proper localized display
  • GET /providers/{id}/account_status now exposes referee service fee discounts in the billing information, allowing developers to display discount details for referred providers

GET /platform/referral_code

  • the share_url response's property format changed from uri to none for status 200 (media type: application/json)
  • added the required property stats to the response with the 200 status (media type: application/json)
  • the response required property code became read-only for the status 200 (media type: application/json)
  • the response required property share_url became read-only for the status 200 (media type: application/json)
View updated docs

GET /invoices

  • added the required property results/items/receipt_url to the response with the 200 status (media type: application/json)
View updated docs

GET /invoices/{id}

  • added the required property receipt_url to the response with the 200 status (media type: application/json)
View updated docs

GET /platform/referral_program

  • added the optional property reward_amount/currency_symbol to the response with the 200 status (media type: application/json)
  • added the optional property reward_amount/currency_symbol_position to the response with the 200 status (media type: application/json)
  • added the optional property reward_amount/decimal to the response with the 200 status (media type: application/json)
  • added the optional property reward_amount/iso_currency_code to the response with the 200 status (media type: application/json)
  • added the optional property reward_amount/string to the response with the 200 status (media type: application/json)
View updated docs

GET /providers/{id}/account_status

  • added the required property teamup_billing/allOf[subschema #1: TeamUpBilling]/referee_service_fee_discount to the response with the 200 status (media type: application/json)
View updated docs