POST api/General/UpdateCloseOut

Request Information

URI Parameters

None.

Body Parameters

UpdateCloseOutVM
NameDescriptionTypeAdditional information
CloseOutID

integer

None.

IsClosed

boolean

None.

User

UserObj

None.

Request Formats

application/json, text/json

Sample:
{
  "User": {
    "SessionID": "sample string 1",
    "GUID": "sample string 2",
    "Message": "sample string 3",
    "IsValid": {}
  },
  "CloseOutID": 1,
  "IsClosed": true
}

text/html

Sample:
{"User":{"SessionID":"sample string 1","GUID":"sample string 2","Message":"sample string 3","IsValid":{}},"CloseOutID":1,"IsClosed":true}

application/xml, text/xml

Sample:
<UpdateCloseOutVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PGamaAPI.ViewModels">
  <CloseOutID>1</CloseOutID>
  <IsClosed>true</IsClosed>
  <User>
    <GUID>sample string 2</GUID>
    <IsValid />
    <Message>sample string 3</Message>
    <SessionID>sample string 1</SessionID>
  </User>
</UpdateCloseOutVM>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Collection of Object

None.

Response Formats

application/json, text/json

Sample:
[
  {},
  {}
]

text/html

Sample:
[{},{}]

application/xml, text/xml

Sample:
<ArrayOfanyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
  <anyType />
  <anyType />
</ArrayOfanyType>