An operation to create or update User Defined Field definitions.
Since Product Version: 2.2
Resource URL
/webacs/api/v1/op/udfService/importUserTagDefinitionRequest Payload Parameters
Type | Attribute Name | Description |
---|---|---|
definitions |
A list of User Defined Field Definitions |
Response Parameters
Type | Attribute Name | Description |
---|---|---|
String |
operation |
The name of the operation. |
results |
|
Sample Payloads
Sample payloads are for information only. They are automatically generated and the values included may not be representative of actual valid data values.
Sample XML Request Payload
https://172.25.123.114/webacs/api/v1/op/udfService/importUserTagDefinition
<?xml version="1.0" ?> <definitionImport> <definitions> <definition> <description>String value</description> <name>String value</name> </definition> </definitions> </definitionImport>
Sample JSON Request Payload
https://172.25.123.114/webacs/api/v1/op/udfService/importUserTagDefinition.json
{ "definitionImport" : { "definitions" : { "definition" : { "description" : "String value", "name" : "String value" } } } }
Sample XML Response Payload
https://172.25.123.114/webacs/api/v1/op/udfService/importUserTagDefinition
<?xml version="1.0" ?> <mgmtResponse responseType="operation" requestUrl="../../../../pages/common/login.jsp.html" rootUrl="https://172.25.123.114/webacs/api/v1/op/"> <udfOperationResult> <operation>String value</operation> <results> <result> <message>String value</message> <name>String value</name> <status>String value</status> </result> </results> </udfOperationResult> </mgmtResponse>
Sample JSON Response Payload
https://172.25.123.114/webacs/api/v1/op/udfService/importUserTagDefinition.json
{ "mgmtResponse" : { "@responseType" : "operation", "@requestUrl" : "https : \/\/172.25.123.114\/webacs\/api\/v1\/op\/udfService\/importUserTagDefinition", "@rootUrl" : "https : \/\/172.25.123.114\/webacs\/api\/v1\/op\/", "udfOperationResult" : { "operation" : "String value", "results" : { "result" : { "message" : "String value", "name" : "String value", "status" : "String value" } } } } }