API documentation | API docs for agents | OpenAPI 3.1
PATCH /api/v1/people/{personId}
ark.update_person
Updates a carrier driver or dispatcher contact profile and optional carrier link.
- Availability
- Core preview
- Scopes
people:write- ARK permissions
canEditPerson- Team visibility
- Not entity-scoped
- Idempotency-Key
- Required for this write
- Approval
- No MCP approval on REST API-token calls
- Rate limit
- API credential and organization budgets
Parameters
personIdpathstringrequired- Underlying ARK person ID.
- format: uuid
Idempotency-Keyheaderstringrequired- Required for external write operations. Reuse the same key only for exact retries of the same request body.
- min length: 1; max length: 200
Request body
typestringrequiredone of: driver, dispatcher
carrierIdstringCarrier ID this driver or dispatcher contact belongs to.
format: uuid
firstNamestring | nullmax length: 100
lastNamestring | nullmax length: 100
emailstring | nullmax length: 500
phonestring | nullmax length: 50
notesstring | nullmax length: 5000
Example request
Shell
curl -X PATCH 'https://arktms.com/api/v1/people/<personId>' \
-H "Authorization: Bearer $ARK_API_TOKEN" \
-H "Idempotency-Key: <unique-key>" \
-H "Content-Type: application/json" \
-d '{
"type": "driver"
}'Success response
Updated person
objectstringrequiredone of: api_response
okbooleanrequiredone of: true
api_versionstringrequiredone of: 2026-05-31
request_idstringrequireddataobjectrequireddata.typestringrequiredone of: driver, dispatcher
data.recordIdstringrequiredDriver or dispatcher table record ID.
format: uuid
data.personIdstringrequiredUnderlying ARK person ID used for get/update/delete.
format: uuid
data.firstNamestring | nullrequireddata.lastNamestring | nullrequireddata.emailstring | nullrequireddata.phonestring | nullrequireddata.notesstring | nullrequireddata.carrierobject | nullrequireddata.hasAppAccountboolean | nullrequiredDriver mobile-app account flag. Null for dispatchers.
data.userIdstring | nullrequiredformat: uuid
data.createdAtstring | nullrequiredformat: date-time
data.modifiedAtstring | nullrequiredformat: date-time
Errors
HTTP 400- Invalid request
HTTP 401- Authentication required
HTTP 403- Permission, scope, team, or entitlement denied
HTTP 404- Resource not found