changeCopyStationStatus
This method allows:
- Changing the status of a copy station.
| Java class | |
|---|---|
| Request | web/wwwroot/ws/java/document/ChangeCopyStationStatusRequestType.java |
| Return | web/wwwroot/ws/java/document/ChangeCopyStationStatusResponseType.java |
Request:
| ID # | Required | Description |
|---|---|---|
| IDCOPYSTATION | X | Copy station ID #. |
| FGSTATUS | X | 1 - Active; 2 - Inactive. |
Request structure:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:document">
<soapenv:Header/>
<soapenv:Body>
<urn:changeCopyStationStatus>
<!--You may enter the following 2 items in any order-->
<urn:CopyStationID>?</urn:CopyStationID>
<urn:Status>?</urn:Status>
</urn:changeCopyStationStatus>
</soapenv:Body>
</soapenv:Envelope>
Return:
| ID # | Description |
|---|---|
| Status | SUCCESS: SUCCESS FAILURE: FAILURE |
| Code | Returns the execution code: 1 - Operation successfully performed; -2 - Copy station not found; -3 - Status already defined; -4 - There are relationships; -5 - There are copies being used; -6 - Internal server error. |
| Detail | Message detailing the error or success in the execution of the method. |