Skip to content

Latest commit

 

History

History
54 lines (34 loc) · 1.88 KB

SalesInvoiceCommentRepositoryV1Api.md

File metadata and controls

54 lines (34 loc) · 1.88 KB

SpringImport\Swagger\Magento2\Client\SalesInvoiceCommentRepositoryV1Api

All URIs are relative to http://t213.vg/rest/default

Method HTTP request Description
salesInvoiceCommentRepositoryV1SavePost POST /V1/invoices/comments

salesInvoiceCommentRepositoryV1SavePost

\SpringImport\Swagger\Magento2\Client\Model\SalesDataInvoiceCommentInterface salesInvoiceCommentRepositoryV1SavePost($body)

Performs persist operations for a specified invoice comment.

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new SpringImport\Swagger\Magento2\Client\Api\SalesInvoiceCommentRepositoryV1Api();
$body = new \SpringImport\Swagger\Magento2\Client\Model\Body76(); // \SpringImport\Swagger\Magento2\Client\Model\Body76 | 

try {
    $result = $api_instance->salesInvoiceCommentRepositoryV1SavePost($body);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling SalesInvoiceCommentRepositoryV1Api->salesInvoiceCommentRepositoryV1SavePost: ', $e->getMessage(), PHP_EOL;
}
?>

Parameters

Name Type Description Notes
body \SpringImport\Swagger\Magento2\Client\Model\Body76 [optional]

Return type

\SpringImport\Swagger\Magento2\Client\Model\SalesDataInvoiceCommentInterface

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: Not defined

[Back to top] [Back to API list] [Back to Model list] [Back to README]