--- layout: m1x_soap title: Add Comment ---
Aliases:
Allows you to add a new comment to the order invoice.
Aliases:
Arguments:
| Type | Name | Description |
|---|---|---|
| string | sessionId |
Session ID |
| string |
invoiceIncrementId |
Invoice increment ID |
| string |
comment |
Invoice comment (optional) |
| int |
email |
Send invoice on email flag (optional) |
| int |
includeComment |
Include comment in email flag (optional) |
Returns:
| Type | Description |
|---|---|
| boolean | True if the comment is added to the invoice |
$client = new SoapClient('http://magentohost/api/soap/?wsdl');
// If somestuff requires api authentification,
// then get a session token
$session = $client->login('apiUser', 'apikey');
$result = $client->call($session, 'sales_order_invoice.addComment', array('invoiceIncrementId' => '200000006', 'comment' => 'invoice comment'));
var_dump ($result);
// If you don't need the session anymore
//$client->endSession($session);
$proxy = new SoapClient('http://magentohost/api/v2_soap/?wsdl'); // TODO : change url
$sessionId = $proxy->login('apiUser', 'apiKey'); // TODO : change login and pwd if necessary
$result = $proxy->salesOrderInvoiceAddComment($sessionId, '200000006');
var_dump($result);
$proxy = new SoapClient('http://magentohost/api/v2_soap/?wsdl');
$sessionId = $proxy->login((object)array('username' => 'apiUser', 'apiKey' => 'apiKey'));
$result = $proxy->salesOrderInvoiceAddComment((object)array('sessionId' => $sessionId->result, 'invoiceIncrementId' => '200000006', 'comment' => 'invoice comment', 'email' => null, 'includeComment' => null));
var_dump($result->result);