Refresh Accounting Data
Trigger a refresh of accounting data to ensure all transactions and calculations are up to date.
Method: GET
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>"
}
}
JWT Authorization header using the Bearer scheme. Format: "Bearer {token}"
Accounting data refresh initiated successfully
The response is of type object
.
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>"
}
}