Create License Custom Field

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

URL: /api/v1/license-custom-fields/ Method: POST

Parameters

  • value — String

  • license — Integer

  • product_custom_field — Integer

Data Example

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

Success Response

Code: 201 OK

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

Was this helpful?