Update License user group

Updates a license user group.

URL: /api/v1/license-users/{id}/ Method: PATCH

Parameters

  • customer_account - Integer

  • name - String

  • description - String

  • metadata - JSON

Data example

Request body (JSON)
{
    "description": "Harry"
}

Success Response

Code: 200 OK

Response (application/json)
{
    "id": 9,
    "metadata_string": null,
    "customer_account": null,
    "created_at": "2025-06-24T10:52:58.156907Z",
    "updated_at": "2025-06-24T10:52:58.156952Z",
    "code": "lug5",
    "name": "lug5",
    "description": "Harry",
    "metadata": {},
    "company": 277
}

Was this helpful?