update profile.md

Update profile

Management API · Your Profile · Deprecated

PUT https://app.mk.io/api/profile/

This endpoint allows certain fields within the profile to be updated.

Requires authentication; no additional RBAC permissions required.

Authentication

Request body

Content type: application/json

Example request

curl -X PUT "https://app.mk.io/api/profile/" \
  -H "Authorization: Bearer <token>" \
  -H "Content-Type: application/json" \
  -d '{
  "spec": {
    "company": "string",
    "country": "string",
    "jobrole": "string",
    "name": "string",
    "phonenumber": "string"
  }
}'

Responses

200 — OK

400 — Bad Request

401 — Unauthorized

403 — Forbidden

404 — Not Found

429 — Too Many Requests

500 — Internal Server Error


Source spec: management-api · operationId: [put]_/api/profile/