PUT api/doctype/update?id={id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
DocTypeRequestData| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| SecId | integer |
None. |
|
| ArName | string |
None. |
|
| EnName | string |
None. |
Request Formats
application/xml, text/xml
Sample:
<DocTypeRequestData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CCT.VerifyDoc.API.Controllers"> <ArName>sample string 3</ArName> <EnName>sample string 4</EnName> <Id>1</Id> <SecId>2</SecId> </DocTypeRequestData>
application/x-www-form-urlencoded
Sample:
Sample not available.
application/json, text/json
Sample:
{
"SecId": 2,
"Id": 1,
"EnName": "sample string 4",
"ArName": "sample string 3"
}
Response Information
Resource Description
None.