Update License Custom Field

Updates a license custom field, if the requesting manager has access permissions to it.

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

circle-info

The requesting manager must have access permissions to the custom field to perform this update.

Parameters

  • value — String

Data example

Request body (application/json)
{
  "value": "23"
}

Success response

Code: 200 OK

Response body (application/json)
{
  "id": 83,
  "value": "23",
  "license": 1609234933166159,
  "product_custom_field": 51
}

Was this helpful?