Skip to main content
Version: 2.2.2

editCopyStation

This method allows editing:

  • Copy station.

To edit each of these items, the standard documented below must be followed.

Java class
Requestweb/wwwroot/ws/java/document/EditCopyStationRequestType.java
Returnweb/wwwroot/ws/java/document/EditCopyStationResponseType.java

Request:

ID #RequiredDescription
CopyStationIDXCopy station ID #.
CopyStationNameXCopy station name.
CopyStationOwnerIDUpper-level copy station ID #.
TeamIDID # of the team responsible for sending.
UserIDXPrimary 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
StatusSUCCESS: SUCCESS
FAILURE: FAILURE
CodeDisplayed 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.
DetailMessage detailing the error or success in the execution of the method.
RecordIDSUCCESS: ID # of the copy station created.
FAILURE: Empty.