POST api/JISignOff?project={project}&model={model}&db={db}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
project | string |
Required |
|
model | string |
Required |
|
db | string |
Required |
Body Parameters
Collection of JISignOffName | Description | Type | Additional information |
---|---|---|---|
cttrHeaderId | integer |
None. |
|
type | string |
None. |
|
userName | string |
None. |
|
dateTime | integer |
None. |
|
signOffSlotNumber | integer |
None. |
|
fieldVerified | JIFieldVerified |
None. |
Request Formats
application/json, text/json
Sample:
[ { "cttrHeaderId": 1, "type": "sample string 2", "userName": "sample string 3", "dateTime": 4, "signOffSlotNumber": 5, "fieldVerified": { "signed": true, "signedBy": "sample string 2", "signedOn": 3 } }, { "cttrHeaderId": 1, "type": "sample string 2", "userName": "sample string 3", "dateTime": 4, "signOffSlotNumber": 5, "fieldVerified": { "signed": true, "signedBy": "sample string 2", "signedOn": 3 } } ]
text/xml
Sample:
<ArrayOfJISignOff xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApplication1.Models.JI"> <JISignOff> <cttrHeaderId>1</cttrHeaderId> <dateTime>4</dateTime> <fieldVerified> <signed>true</signed> <signedBy>sample string 2</signedBy> <signedOn>3</signedOn> </fieldVerified> <signOffSlotNumber>5</signOffSlotNumber> <type>sample string 2</type> <userName>sample string 3</userName> </JISignOff> <JISignOff> <cttrHeaderId>1</cttrHeaderId> <dateTime>4</dateTime> <fieldVerified> <signed>true</signed> <signedBy>sample string 2</signedBy> <signedOn>3</signedOn> </fieldVerified> <signOffSlotNumber>5</signOffSlotNumber> <type>sample string 2</type> <userName>sample string 3</userName> </JISignOff> </ArrayOfJISignOff>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
stringResponse Formats
application/json, text/json
Sample:
"sample string 1"
text/xml
Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>