POST
/
stats
/
refresh_data
curl --request POST \
  --url https://api.growi.io/api/public/v1/stats/refresh_data \
  --header 'Authorization: Bearer <token>'
{
  "success": true
}

Refreshes and re-syncs all creator social accounts data. This endpoint triggers a background job to update content snapshots and synchronize creator data across all connected platforms.

Request Example

curl -X POST "https://api.growi.io/api/public/v1/stats/refresh_data" \
     -H "Authorization: Bearer YOUR_PUBLIC_API_KEY" \
     -H "Content-Type: application/json"

Response Example

{
  "success": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200
application/json

Data refresh initiated successfully

The response is of type object.