Create fix
Records where a unit is. It appends the position to the unit's trail, moves the unit's own coordinates and last-seen stamp, and publishes one frame to…
POST /v1/patrol/unit/{name}/fix
| Address | https://api.hanzo.ai/v1/patrol/unit/{name}/fix |
| Method | POST |
| Operation | post_patrol_unit_by_name_fix |
| Auth | Authorization: Bearer $HANZO_API_KEY |
Records where a unit is. It appends the position to the unit's trail, moves the unit's own coordinates and last-seen stamp, and publishes one frame to every screen watching. An officer may report only their own unit; the control room may report any.
Request
5 fields, body application/json (required).
| Field | In | Type | Required | Description |
|---|---|---|---|---|
name | path | string | yes | Name is the unit's call sign, from the path. |
at | body | string | — | At is not a caller's to fill. A position report is stamped by the server, and a body naming it is refused rather than silently restamped: the trail is the… |
lat | body | number (double) | — | Lat is the latitude in degrees. |
lon | body | number (double) | — | Lon is the longitude in degrees. |
name | body | string | — | Name is the unit's call sign, from the path. |
Response
| Status | Body | Meaning |
|---|---|---|
200 | patrol.patrolFixOut | ok |
default | problem-details | refused |
200 body — 2 fields.
| Field | In | Type | Always | Description |
|---|---|---|---|---|
data | body | patrol.patrolFixed | — | |
data.at | body | string | — | At is the moment the position was recorded under. |
Failure carries the platform error shape — see Errors.
Examples
hanzo patrol unit fix <name>import { Configuration, PatrolApi } from 'hanzoai';
const api = new PatrolApi(new Configuration({ accessToken: process.env.HANZO_API_KEY }));
const { data } = await api.postPatrolUnitByNameFix({ name: 'name', at: "<at>", lat: 0 });from hanzoai.cloud import ApiClient, Configuration
from hanzoai.cloud.api import PatrolApi
client = ApiClient(Configuration(access_token=os.environ["HANZO_API_KEY"]))
result = PatrolApi(client).post_patrol_unit_by_name_fix(name='name', at="<at>", lat=0)cfg := hanzoai.NewConfiguration()
cfg.AddDefaultHeader("Authorization", "Bearer "+os.Getenv("HANZO_API_KEY"))
client := hanzoai.NewAPIClient(cfg)
resp, _, err := client.PatrolAPI.PostPatrolUnitByNameFix(context.Background()).Execute()
if err != nil {
return err
}use hanzo_client::apis::{configuration::Configuration, patrol_api};
let mut cfg = Configuration::new();
cfg.bearer_access_token = std::env::var("HANZO_API_KEY").ok();
let result = patrol_api::post_patrol_unit_by_name_fix(&cfg, Default::default()).await?;import ai.hanzo.cloud.ApiClient;
import ai.hanzo.cloud.api.PatrolApi;
ApiClient client = new ApiClient();
client.setBearerToken(System.getenv("HANZO_API_KEY"));
var result = new PatrolApi(client).postPatrolUnitByNameFix();The method above is the one at the current release of the document. [email protected] (npm) was generated from an earlier release, where this operation carried a different id, so it spells the method differently — regenerating the clients is what makes the two agree. SDKs →
curl -X POST https://api.hanzo.ai/v1/patrol/unit/<name>/fix \
-H "Authorization: Bearer $HANZO_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"at": "<at>",
"lat": 0
}'MCP declares no tool for patrol — tools/list on https://api.hanzo.ai/v1/mcp names the products it does reach. Use HTTP or an SDK.
How is this guide?