editCopyStation
This method allows editing:
- Copy station.
To edit each of these items, the standard documented below must be followed.
Java class | |
---|---|
Request | web/wwwroot/ws/java/document/EditCopyStationRequestType.java |
Return | web/wwwroot/ws/java/document/EditCopyStationResponseType.java |
Request:
ID # | Required | Description |
---|---|---|
CopyStationID | X | Copy station ID #. |
CopyStationName | X | Copy station name. |
CopyStationOwnerID | Upper-level copy station ID #. | |
TeamID | ID # of the team responsible for sending. | |
UserID | X | Primary responsible user ID. |
Request structure:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:document">
<soapenv:Header/>
<soapenv:Body>
<urn:editCopyStation>
<!--You may enter the following 5 items in any order-->
<urn:CopyStationID>?</urn:CopyStationID>
<urn:CopyStationName>?</urn:CopyStationName>
<urn:CopyStationOwnerID>?</urn:CopyStationOwnerID>
<urn:TeamID>?</urn:TeamID>
<urn:UserID>?</urn:UserID>
<urn:editCopyStation>
</soapenv:Body>
</soapenv:Envelope>
Return:
ID # | Description |
---|---|
Status | SUCCESS: SUCCESS FAILURE: FAILURE |
Code | Displayed code: • 1 - No error (record created successfully); • -1 - Copy station not found; • -2 - User not found; • -3 - Team not found; • -4 - Upper-level station not found; • -5 - Empty required fields; • -6 - Fields with exceeded size limit. |
Detail | Message detailing the error or success in the execution of the method. |
RecordID | SUCCESS: ID # of the copy station created. FAILURE: Empty. |