POST api/Binder/SaveDocumentInfo

Request Information

URI Parameters

None.

Body Parameters

DocumentInfoVM
NameDescriptionTypeAdditional information
Id

integer

None.

No

string

None.

Name

string

None.

AccountTypeId

integer

None.

ProjectId

integer

None.

Description

string

None.

DocumentCategoryId

integer

None.

DocumentStatusId

integer

None.

BinderCategoryId

integer

None.

UserId

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "No": "sample string 2",
  "Name": "sample string 3",
  "AccountTypeId": 4,
  "ProjectId": 5,
  "Description": "sample string 6",
  "DocumentCategoryId": 1,
  "DocumentStatusId": 1,
  "BinderCategoryId": 7,
  "UserId": "sample string 8"
}

application/xml, text/xml

Sample:
<DocumentInfoVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Nokon.Nappen.Data.ViewModels">
  <AccountTypeId>4</AccountTypeId>
  <BinderCategoryId>7</BinderCategoryId>
  <Description>sample string 6</Description>
  <DocumentCategoryId>1</DocumentCategoryId>
  <DocumentStatusId>1</DocumentStatusId>
  <Id>1</Id>
  <Name>sample string 3</Name>
  <No>sample string 2</No>
  <ProjectId>5</ProjectId>
  <UserId>sample string 8</UserId>
</DocumentInfoVM>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

integer

Response Formats

application/json, text/json

Sample:
1

application/xml, text/xml

Sample:
<int xmlns="http://schemas.microsoft.com/2003/10/Serialization/">1</int>