-
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Tag or Custom Property fields can be added, modified, or deleted as needed for every NetLicensing entity using NetLicensing RESTful API. List TagsRetrieve a list of all tags currently assigned to a specific Licensee. curl -X GET -H "Authorization: Basic ZGVtbzpkZW1v" -H "Accept: application/xml" \
https://go.netlicensing.io/core/v2/rest/licensee/I69SPSVEE \
| xmllint --format - Add Tag(s)Add one or more tags to a Licensee to categorize or associate specific attributes with them. curl -X POST -H "Authorization: Basic ZGVtbzpkZW1v" -H "Accept: application/xml" \
-H "Content-type: application/x-www-form-urlencoded" \
-d "key1=value1&key2=value2" \
https://go.netlicensing.io/core/v2/rest/licensee/I69SPSVEE \
| xmllint --format - Update Tag(s)Modify existing tags for a Licensee to reflect changes in their status. curl -X POST -H "Authorization: Basic ZGVtbzpkZW1v" -H "Accept: application/xml" \
-H "Content-type: application/x-www-form-urlencoded" \
-d "key1=value1.2&key2=value2.2" \
https://go.netlicensing.io/core/v2/rest/licensee/I69SPSVEE \
| xmllint --format - Delete Tag(s)Remove one or more tags from a Licensee that are no longer relevant. curl -X POST -H "Authorization: Basic ZGVtbzpkZW1v" -H "Accept: application/xml" \
-H "Content-type: application/x-www-form-urlencoded" \
-d "key1=" \
https://go.netlicensing.io/core/v2/rest/licensee/I69SPSVEE \
| xmllint --format - Note: Remember to replace |
Beta Was this translation helpful? Give feedback.
Tag or Custom Property fields can be added, modified, or deleted as needed for every NetLicensing entity using NetLicensing RESTful API.
Below are examples of how to manage tags at the Customer (Licensee) level:
List Tags
Retrieve a list of all tags currently assigned to a specific Licensee.
Add Tag(s)
Add one or more tags to a Licensee to categorize or associate specific attributes with them.
Note: max length of the value cannot exceed 1000 characters