Skip to main content
POST
/
faces
/
clusters
/
modify
Merge or move faces between clusters
curl --request POST \
  --url http://localhost:6699/api/v1/faces/clusters/modify \
  --header 'Content-Type: application/json' \
  --header 'X-License-Key: <api-key>' \
  --data '
{
  "cache_dir": "<string>",
  "cluster_job_name": "<string>",
  "merges": [
    {
      "cluster_ids": [
        "<string>"
      ],
      "target_cluster_id": "<string>"
    }
  ],
  "moves": [
    {}
  ]
}
'
{}

Authorizations

X-License-Key
string
header
required

Jumper Pro license key passed via header

Body

application/json
cache_dir
string
required
cluster_job_name
string
required
merges
object[]

Cluster merge operations

moves
object[]

Individual face move operations

Response

200 - application/json

Modification summary

The response is of type object.

Last modified on February 18, 2026