Skip to main content
GET
/
accounting
/
refresh
Refresh Accounting Data
curl --request GET \
  --url https://server26-dot-royalti-project.uc.r.appspot.com/accounting/refresh \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "<string>",
  "data": {
    "refreshId": "<string>",
    "status": "<string>"
  }
}
Refresh Accounting Data Trigger a refresh of accounting data to ensure all transactions and calculations are up to date. Method: GET

Authentication

This endpoint requires authentication. Include your bearer token in the Authorization header.

Responses

āœ… 200 - Accounting data refresh initiated successfully

āš ļø 401 - Unauthorized

āŒ 500 - Internal Server Error

Tags

Accounting

Authorizations

Authorization
string
header
required

JWT Authorization header using the Bearer scheme. Format: "Bearer {token}"

Response

Accounting data refresh initiated successfully

success
boolean
message
string
data
object
⌘I