newCopyStation
This method allows adding:
- Copy station.
To insert each of these items, it is necessary to follow the standard documented below.
Java class | |
---|---|
Request | web/wwwroot/ws/java/document/NewCopyStationRequestType.java |
Return | web/wwwroot/ws/java/document/NewCopyStationResponseType.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 | Default responsible user ID. |
Request structure:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:document">
<soapenv:Header/>
<soapenv:Body>
<urn:newCopyStation>
<!--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:newCopyStation>
</soapenv:Body>
</soapenv:Envelope>
Return:
ID # | Description |
---|---|
Status | SUCCESS: SUCCESS FAILURE: FAILURE |
Code | Displayed code: • 1 - No error (record created successfully); • -1 - ID # already exists; • -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. |