POST api/dmsdocumentmetadata/delete
Request Information
URI Parameters
None.
Body Parameters
DmsDocumentMetadata| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
Required |
|
| RowGuid | globally unique identifier |
Required |
|
| DocumentLibraryId | integer |
Required |
|
| Name | string |
None. |
|
| DataType | integer |
Required |
|
| DefaultValue | string |
None. |
|
| InternalFieldName | string |
None. |
|
| ExternalFieldName | string |
None. |
|
| FilterMode | integer |
Required |
|
| AccessMode | integer |
Required |
|
| Mandatory | boolean |
Required |
|
| Searchable | boolean |
Required |
|
| Active | boolean |
Required |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"RowGuid": "a334ab9a-791f-41ca-8602-704180346879",
"DocumentLibraryId": 3,
"Name": "sample string 4",
"DataType": 5,
"DefaultValue": "sample string 6",
"InternalFieldName": "sample string 7",
"ExternalFieldName": "sample string 8",
"FilterMode": 9,
"AccessMode": 10,
"Mandatory": true,
"Searchable": true,
"Active": true
}
application/xml, text/xml
Sample:
<DmsDocumentMetadata xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IWeb.Tools.Dms.Models"> <AccessMode>10</AccessMode> <Active>true</Active> <DataType>5</DataType> <DefaultValue>sample string 6</DefaultValue> <DocumentLibraryId>3</DocumentLibraryId> <ExternalFieldName>sample string 8</ExternalFieldName> <FilterMode>9</FilterMode> <Id>1</Id> <InternalFieldName>sample string 7</InternalFieldName> <Mandatory>true</Mandatory> <Name>sample string 4</Name> <RowGuid>a334ab9a-791f-41ca-8602-704180346879</RowGuid> <Searchable>true</Searchable> </DmsDocumentMetadata>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
booleanResponse Formats
application/json, text/json
Sample:
true
application/xml, text/xml
Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>