Skip to main content
POST
/
api
/
v1
/
data
/
{uuid}
/
sync
Trigger a sync for data across all associated agents
curl --request POST \
  --url https://{subdomain}.mindhunters.ai/api/v1/data/{uuid}/sync \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "Sync started for associated agents.",
  "data": {
    "data_uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "agents": [
      "3c90c3cc-0d44-4b50-8888-8dd25736052a"
    ]
  }
}

Authorizations

Authorization
string
header
required

Use a Bearer token to access these API endpoints. Example: "Bearer {your-token}"

Path Parameters

uuid
string<uuid>
required

UUID of the data to sync

Response

Sync started

success
boolean
Example:

true

message
string
Example:

"Sync started for associated agents."

data
object