Skip to main content
PUT
/
api2
/
v1
/
customFields
/
{fieldUid}
/
options
/
{optionUid}
/
deprecate
Deprecate custom field option
curl --request PUT \
  --url https://cloud.memsource.com/web/api2/v1/customFields/{fieldUid}/options/{optionUid}/deprecate \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "deprecated": true
}
'

Authorizations

Authorization
string
header
required

Get a token from auth/login endpoint and then pass it in the Authorization HTTP header in every subsequent API call. For more information visit our help center.

Path Parameters

fieldUid
string
required

Unique identifier of the custom field

optionUid
string
required

Unique identifier of the custom field option

Body

application/json

Deprecation state to apply to the option

deprecated
boolean

Whether the option should be deprecated (true) or reactivated (false)

Response

No Content