Table of Contents

Function

The task CerificateCommentUpdate updates certificate comments.

Certificate comments appear in the.csv attachment of the invoice. Note that you must be activated for the comment function in order to use it. Please contact our support.

Description

Route: PUT /certificate/{id}/_comment

Request
{"comment": "new comment"}
Response
{
   "stid": "20190627-app2-dev-22817",
   "status": {
      "code": "S4001024",
      "text": "The comment was changed successfully.",
      "type": "SUCCESS"
   }
}

Task Code: 4001024
Uses Certificate object

Request
<request>
	<auth>
		<user>customer</user>
		<password>password</password>
		<context></context>
	</auth>
	<task>
		<code>4001024</code>
		<certificate>
			<id>147</id>
			<comment>new comment</comment>
		</certificate>
	</task>
</request
Response
<response>
    <result>
        <data/>
        <status>
            <code>S4001024</code>
            <text>The comment was changed successfully.</text>
            <type>success</type>
        </status>
    </result>
    <stid>STID-1001</stid>
</response>