POST api/SaveSignature

Request Information

URI Parameters

None.

Body Parameters

Signature
NameDescriptionTypeAdditional information
InstallerId

integer

None.

Note

string

None.

base64Sign

string

None.

PoNumber

string

None.

CustId

integer

None.

IsChangeOrd

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "InstallerId": 1,
  "Note": "sample string 2",
  "base64Sign": "sample string 3",
  "PoNumber": "sample string 4",
  "CustId": 5,
  "IsChangeOrd": true
}

application/xml, text/xml

Sample:
<Signature xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ACSStore.WebAPI.Models">
  <CustId>5</CustId>
  <InstallerId>1</InstallerId>
  <IsChangeOrd>true</IsChangeOrd>
  <Note>sample string 2</Note>
  <PoNumber>sample string 4</PoNumber>
  <base64Sign>sample string 3</base64Sign>
</Signature>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.