Skip to content

Latest commit

 

History

History
805 lines (592 loc) · 28.9 KB

AddendasApi.md

File metadata and controls

805 lines (592 loc) · 28.9 KB

FacturaCom\FacturaComSdk\AddendasApi

All URIs are relative to https://sandbox.factura.com

Method HTTP request Description
apiV3AddendaBaswareStorePost POST /api/v3/addenda/basware/store Basware
apiV3AddendaCalsonickanseiStorePost POST /api/v3/addenda/calsonickansei/store Calsonic Kansei
apiV3AddendaCenaceStorePost POST /api/v3/addenda/cenace/store CENACE
apiV3AddendaCityfreskoStorePost POST /api/v3/addenda/cityfresko/store City Fresko
apiV3AddendaCostcoStorePost POST /api/v3/addenda/costco/store Costco
apiV3AddendaKvStorePost POST /api/v3/addenda/kv/store Kuehne + Nagel
apiV3AddendaLesaffreStorePost POST /api/v3/addenda/lesaffre/store Lesaffre
apiV3AddendaMabeStorePost POST /api/v3/addenda/mabe/store Mabe
apiV3AddendaNortechStorePost POST /api/v3/addenda/nortech/store Nortech
apiV3AddendaPepsicoStorePost POST /api/v3/addenda/pepsico/store Pepsico
apiV3AddendaSorianaStorePost POST /api/v3/addenda/soriana/store Soriana
apiV3AddendaSorianasimpStorePost POST /api/v3/addenda/sorianasimp/store Soriana Simplificada
apiV3AddendaWhirlpoolStorePost POST /api/v3/addenda/whirlpool/store Whirlpool
apiV4Cfdi40CreatePost POST /api/v4/cfdi40/create Walmart

apiV3AddendaBaswareStorePost

apiV3AddendaBaswareStorePost($body, $content_type, $f_plugin, $f_api_key, $f_secret_key)

Basware

Datos sobre esta addenda ## Requerimientos Para ser utilizada es necesario contar con el CFDI timbrado antes de integrar la addenda ya que como datos importantes en el cuerpo se envía el campo "invoice" que hace referencia a el UUID o UID del CFDI

Example

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

$apiInstance = new FacturaCom\FacturaComSdk\Api\AddendasApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client()
);
$body = new \stdClass; // object | 
$content_type = "content_type_example"; // string | 
$f_plugin = "f_plugin_example"; // string | 
$f_api_key = "f_api_key_example"; // string | 
$f_secret_key = "f_secret_key_example"; // string | 

try {
    $apiInstance->apiV3AddendaBaswareStorePost($body, $content_type, $f_plugin, $f_api_key, $f_secret_key);
} catch (Exception $e) {
    echo 'Exception when calling AddendasApi->apiV3AddendaBaswareStorePost: ', $e->getMessage(), PHP_EOL;
}
?>

Parameters

Name Type Description Notes
body object [optional]
content_type string [optional]
f_plugin string [optional]
f_api_key string [optional]
f_secret_key string [optional]

Return type

void (empty response body)

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

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

apiV3AddendaCalsonickanseiStorePost

apiV3AddendaCalsonickanseiStorePost($body, $content_type, $f_plugin, $f_api_key, $f_secret_key)

Calsonic Kansei

Datos sobre esta addenda ## Requerimientos Para ser utilizada esta addenda es importante tomar en cuenta que la addenda se añade al mismo tiempo que creamos nuestro CFDI por lo que en la petición incluiremos el cuerpo del CFDI mas la sección "AddendaWalmart"

Example

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

$apiInstance = new FacturaCom\FacturaComSdk\Api\AddendasApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client()
);
$body = new \stdClass; // object | 
$content_type = "content_type_example"; // string | 
$f_plugin = "f_plugin_example"; // string | 
$f_api_key = "f_api_key_example"; // string | 
$f_secret_key = "f_secret_key_example"; // string | 

try {
    $apiInstance->apiV3AddendaCalsonickanseiStorePost($body, $content_type, $f_plugin, $f_api_key, $f_secret_key);
} catch (Exception $e) {
    echo 'Exception when calling AddendasApi->apiV3AddendaCalsonickanseiStorePost: ', $e->getMessage(), PHP_EOL;
}
?>

Parameters

Name Type Description Notes
body object [optional]
content_type string [optional]
f_plugin string [optional]
f_api_key string [optional]
f_secret_key string [optional]

Return type

void (empty response body)

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

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

apiV3AddendaCenaceStorePost

apiV3AddendaCenaceStorePost($body, $content_type, $f_plugin, $f_api_key, $f_secret_key)

CENACE

Datos sobre esta addenda ## Requerimientos Para ser utilizada esta addenda es importante tomar en cuenta que la addenda se añade al mismo tiempo que creamos nuestro CFDI por lo que en la petición incluiremos el cuerpo del CFDI mas la sección "AddendaWalmart"

Example

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

$apiInstance = new FacturaCom\FacturaComSdk\Api\AddendasApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client()
);
$body = new \stdClass; // object | 
$content_type = "content_type_example"; // string | 
$f_plugin = "f_plugin_example"; // string | 
$f_api_key = "f_api_key_example"; // string | 
$f_secret_key = "f_secret_key_example"; // string | 

try {
    $apiInstance->apiV3AddendaCenaceStorePost($body, $content_type, $f_plugin, $f_api_key, $f_secret_key);
} catch (Exception $e) {
    echo 'Exception when calling AddendasApi->apiV3AddendaCenaceStorePost: ', $e->getMessage(), PHP_EOL;
}
?>

Parameters

Name Type Description Notes
body object [optional]
content_type string [optional]
f_plugin string [optional]
f_api_key string [optional]
f_secret_key string [optional]

Return type

void (empty response body)

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

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

apiV3AddendaCityfreskoStorePost

apiV3AddendaCityfreskoStorePost($body, $content_type, $f_plugin, $f_api_key, $f_secret_key)

City Fresko

Datos sobre esta addenda ## Requerimientos Para ser utilizada es necesario contar con el CFDI timbrado antes de integrar la addenda ya que como datos importantes en el cuerpo se envía el campo "invoice" que hace referencia a el UUID o UID del CFDI

Example

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

$apiInstance = new FacturaCom\FacturaComSdk\Api\AddendasApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client()
);
$body = new \stdClass; // object | 
$content_type = "content_type_example"; // string | 
$f_plugin = "f_plugin_example"; // string | 
$f_api_key = "f_api_key_example"; // string | 
$f_secret_key = "f_secret_key_example"; // string | 

try {
    $apiInstance->apiV3AddendaCityfreskoStorePost($body, $content_type, $f_plugin, $f_api_key, $f_secret_key);
} catch (Exception $e) {
    echo 'Exception when calling AddendasApi->apiV3AddendaCityfreskoStorePost: ', $e->getMessage(), PHP_EOL;
}
?>

Parameters

Name Type Description Notes
body object [optional]
content_type string [optional]
f_plugin string [optional]
f_api_key string [optional]
f_secret_key string [optional]

Return type

void (empty response body)

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

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

apiV3AddendaCostcoStorePost

apiV3AddendaCostcoStorePost($body, $content_type, $f_plugin, $f_api_key, $f_secret_key)

Costco

Datos sobre esta addenda ## Requerimientos Para ser utilizada es necesario contar con el CFDI timbrado antes de integrar la addenda ya que como datos importantes en el cuerpo se envía el campo "invoice" que hace referencia a el UUID o UID del CFDI

Example

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

$apiInstance = new FacturaCom\FacturaComSdk\Api\AddendasApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client()
);
$body = new \stdClass; // object | 
$content_type = "content_type_example"; // string | 
$f_plugin = "f_plugin_example"; // string | 
$f_api_key = "f_api_key_example"; // string | 
$f_secret_key = "f_secret_key_example"; // string | 

try {
    $apiInstance->apiV3AddendaCostcoStorePost($body, $content_type, $f_plugin, $f_api_key, $f_secret_key);
} catch (Exception $e) {
    echo 'Exception when calling AddendasApi->apiV3AddendaCostcoStorePost: ', $e->getMessage(), PHP_EOL;
}
?>

Parameters

Name Type Description Notes
body object [optional]
content_type string [optional]
f_plugin string [optional]
f_api_key string [optional]
f_secret_key string [optional]

Return type

void (empty response body)

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

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

apiV3AddendaKvStorePost

apiV3AddendaKvStorePost($body, $content_type, $f_plugin, $f_api_key, $f_secret_key)

Kuehne + Nagel

Datos sobre esta addenda ## Requerimientos Para ser utilizada es necesario contar con el CFDI timbrado antes de integrar la addenda ya que como datos importantes en el cuerpo se envía el campo "invoice" que hace referencia a el UUID o UID del CFDI

Example

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

$apiInstance = new FacturaCom\FacturaComSdk\Api\AddendasApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client()
);
$body = new \stdClass; // object | 
$content_type = "content_type_example"; // string | 
$f_plugin = "f_plugin_example"; // string | 
$f_api_key = "f_api_key_example"; // string | 
$f_secret_key = "f_secret_key_example"; // string | 

try {
    $apiInstance->apiV3AddendaKvStorePost($body, $content_type, $f_plugin, $f_api_key, $f_secret_key);
} catch (Exception $e) {
    echo 'Exception when calling AddendasApi->apiV3AddendaKvStorePost: ', $e->getMessage(), PHP_EOL;
}
?>

Parameters

Name Type Description Notes
body object [optional]
content_type string [optional]
f_plugin string [optional]
f_api_key string [optional]
f_secret_key string [optional]

Return type

void (empty response body)

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

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

apiV3AddendaLesaffreStorePost

apiV3AddendaLesaffreStorePost($body, $content_type, $f_plugin, $f_api_key, $f_secret_key)

Lesaffre

Datos sobre esta addenda ## Requerimientos Para ser utilizada esta addenda es importante tomar en cuenta que la addenda se añade al mismo tiempo que creamos nuestro CFDI por lo que en la petición incluiremos el cuerpo del CFDI mas la sección "AddendaWalmart"

Example

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

$apiInstance = new FacturaCom\FacturaComSdk\Api\AddendasApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client()
);
$body = new \stdClass; // object | 
$content_type = "content_type_example"; // string | 
$f_plugin = "f_plugin_example"; // string | 
$f_api_key = "f_api_key_example"; // string | 
$f_secret_key = "f_secret_key_example"; // string | 

try {
    $apiInstance->apiV3AddendaLesaffreStorePost($body, $content_type, $f_plugin, $f_api_key, $f_secret_key);
} catch (Exception $e) {
    echo 'Exception when calling AddendasApi->apiV3AddendaLesaffreStorePost: ', $e->getMessage(), PHP_EOL;
}
?>

Parameters

Name Type Description Notes
body object [optional]
content_type string [optional]
f_plugin string [optional]
f_api_key string [optional]
f_secret_key string [optional]

Return type

void (empty response body)

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

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

apiV3AddendaMabeStorePost

apiV3AddendaMabeStorePost($body, $content_type, $f_plugin, $f_api_key, $f_secret_key)

Mabe

Datos sobre esta addenda ## Requerimientos Para ser utilizada es necesario contar con el CFDI timbrado antes de integrar la addenda ya que como datos importantes en el cuerpo se envía el campo "invoice" que hace referencia a el UUID o UID del CFDI

Example

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

$apiInstance = new FacturaCom\FacturaComSdk\Api\AddendasApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client()
);
$body = new \stdClass; // object | 
$content_type = "content_type_example"; // string | 
$f_plugin = "f_plugin_example"; // string | 
$f_api_key = "f_api_key_example"; // string | 
$f_secret_key = "f_secret_key_example"; // string | 

try {
    $apiInstance->apiV3AddendaMabeStorePost($body, $content_type, $f_plugin, $f_api_key, $f_secret_key);
} catch (Exception $e) {
    echo 'Exception when calling AddendasApi->apiV3AddendaMabeStorePost: ', $e->getMessage(), PHP_EOL;
}
?>

Parameters

Name Type Description Notes
body object [optional]
content_type string [optional]
f_plugin string [optional]
f_api_key string [optional]
f_secret_key string [optional]

Return type

void (empty response body)

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

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

apiV3AddendaNortechStorePost

apiV3AddendaNortechStorePost($body, $content_type, $f_plugin, $f_api_key, $f_secret_key)

Nortech

Datos sobre esta addenda ## Requerimientos Para ser utilizada esta addenda es importante tomar en cuenta que la addenda se añade al mismo tiempo que creamos nuestro CFDI por lo que en la petición incluiremos el cuerpo del CFDI mas la sección "AddendaWalmart"

Example

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

$apiInstance = new FacturaCom\FacturaComSdk\Api\AddendasApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client()
);
$body = new \stdClass; // object | 
$content_type = "content_type_example"; // string | 
$f_plugin = "f_plugin_example"; // string | 
$f_api_key = "f_api_key_example"; // string | 
$f_secret_key = "f_secret_key_example"; // string | 

try {
    $apiInstance->apiV3AddendaNortechStorePost($body, $content_type, $f_plugin, $f_api_key, $f_secret_key);
} catch (Exception $e) {
    echo 'Exception when calling AddendasApi->apiV3AddendaNortechStorePost: ', $e->getMessage(), PHP_EOL;
}
?>

Parameters

Name Type Description Notes
body object [optional]
content_type string [optional]
f_plugin string [optional]
f_api_key string [optional]
f_secret_key string [optional]

Return type

void (empty response body)

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

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

apiV3AddendaPepsicoStorePost

apiV3AddendaPepsicoStorePost($body, $content_type, $f_plugin, $f_api_key, $f_secret_key)

Pepsico

Datos sobre esta addenda ## Requerimientos Para ser utilizada esta addenda es importante tomar en cuenta que la addenda se añade al mismo tiempo que creamos nuestro CFDI por lo que en la petición incluiremos el cuerpo del CFDI mas la sección "AddendaWalmart"

Example

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

$apiInstance = new FacturaCom\FacturaComSdk\Api\AddendasApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client()
);
$body = new \stdClass; // object | 
$content_type = "content_type_example"; // string | 
$f_plugin = "f_plugin_example"; // string | 
$f_api_key = "f_api_key_example"; // string | 
$f_secret_key = "f_secret_key_example"; // string | 

try {
    $apiInstance->apiV3AddendaPepsicoStorePost($body, $content_type, $f_plugin, $f_api_key, $f_secret_key);
} catch (Exception $e) {
    echo 'Exception when calling AddendasApi->apiV3AddendaPepsicoStorePost: ', $e->getMessage(), PHP_EOL;
}
?>

Parameters

Name Type Description Notes
body object [optional]
content_type string [optional]
f_plugin string [optional]
f_api_key string [optional]
f_secret_key string [optional]

Return type

void (empty response body)

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

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

apiV3AddendaSorianaStorePost

apiV3AddendaSorianaStorePost($body, $content_type, $f_plugin, $f_api_key, $f_secret_key)

Soriana

Datos sobre esta addenda ## Requerimientos Para ser utilizada es necesario contar con el CFDI timbrado antes de integrar la addenda ya que como datos importantes en el cuerpo se envía el campo "invoice" que hace referencia a el UUID o UID del CFDI

Example

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

$apiInstance = new FacturaCom\FacturaComSdk\Api\AddendasApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client()
);
$body = new \stdClass; // object | 
$content_type = "content_type_example"; // string | 
$f_plugin = "f_plugin_example"; // string | 
$f_api_key = "f_api_key_example"; // string | 
$f_secret_key = "f_secret_key_example"; // string | 

try {
    $apiInstance->apiV3AddendaSorianaStorePost($body, $content_type, $f_plugin, $f_api_key, $f_secret_key);
} catch (Exception $e) {
    echo 'Exception when calling AddendasApi->apiV3AddendaSorianaStorePost: ', $e->getMessage(), PHP_EOL;
}
?>

Parameters

Name Type Description Notes
body object [optional]
content_type string [optional]
f_plugin string [optional]
f_api_key string [optional]
f_secret_key string [optional]

Return type

void (empty response body)

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

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

apiV3AddendaSorianasimpStorePost

apiV3AddendaSorianasimpStorePost($body, $content_type, $f_plugin, $f_api_key, $f_secret_key)

Soriana Simplificada

Datos sobre esta addenda ## Requerimientos Para ser utilizada es necesario contar con el CFDI timbrado antes de integrar la addenda ya que como datos importantes en el cuerpo se envía el campo "invoice" que hace referencia a el UUID o UID del CFDI

Example

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

$apiInstance = new FacturaCom\FacturaComSdk\Api\AddendasApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client()
);
$body = new \stdClass; // object | 
$content_type = "content_type_example"; // string | 
$f_plugin = "f_plugin_example"; // string | 
$f_api_key = "f_api_key_example"; // string | 
$f_secret_key = "f_secret_key_example"; // string | 

try {
    $apiInstance->apiV3AddendaSorianasimpStorePost($body, $content_type, $f_plugin, $f_api_key, $f_secret_key);
} catch (Exception $e) {
    echo 'Exception when calling AddendasApi->apiV3AddendaSorianasimpStorePost: ', $e->getMessage(), PHP_EOL;
}
?>

Parameters

Name Type Description Notes
body object [optional]
content_type string [optional]
f_plugin string [optional]
f_api_key string [optional]
f_secret_key string [optional]

Return type

void (empty response body)

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

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

apiV3AddendaWhirlpoolStorePost

apiV3AddendaWhirlpoolStorePost($body, $content_type, $f_plugin, $f_api_key, $f_secret_key)

Whirlpool

Datos sobre esta addenda ## Requerimientos Para ser utilizada es necesario contar con el CFDI timbrado antes de integrar la addenda ya que como datos importantes en el cuerpo se envía el campo "invoice" que hace referencia a el UUID o UID del CFDI

Example

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

$apiInstance = new FacturaCom\FacturaComSdk\Api\AddendasApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client()
);
$body = new \stdClass; // object | 
$content_type = "content_type_example"; // string | 
$f_plugin = "f_plugin_example"; // string | 
$f_api_key = "f_api_key_example"; // string | 
$f_secret_key = "f_secret_key_example"; // string | 

try {
    $apiInstance->apiV3AddendaWhirlpoolStorePost($body, $content_type, $f_plugin, $f_api_key, $f_secret_key);
} catch (Exception $e) {
    echo 'Exception when calling AddendasApi->apiV3AddendaWhirlpoolStorePost: ', $e->getMessage(), PHP_EOL;
}
?>

Parameters

Name Type Description Notes
body object [optional]
content_type string [optional]
f_plugin string [optional]
f_api_key string [optional]
f_secret_key string [optional]

Return type

void (empty response body)

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

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

apiV4Cfdi40CreatePost

apiV4Cfdi40CreatePost($body, $content_type, $f_plugin, $f_api_key, $f_secret_key)

Walmart

Datos sobre esta addenda ## Requerimientos Para ser utilizada esta addenda es importante tomar en cuenta que la addenda se añade al mismo tiempo que creamos nuestro CFDI por lo que en la petición incluiremos el cuerpo del CFDI mas la sección "AddendaWalmart"

Example

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

$apiInstance = new FacturaCom\FacturaComSdk\Api\AddendasApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client()
);
$body = new \stdClass; // object | 
$content_type = "content_type_example"; // string | 
$f_plugin = "f_plugin_example"; // string | 
$f_api_key = "f_api_key_example"; // string | 
$f_secret_key = "f_secret_key_example"; // string | 

try {
    $apiInstance->apiV4Cfdi40CreatePost($body, $content_type, $f_plugin, $f_api_key, $f_secret_key);
} catch (Exception $e) {
    echo 'Exception when calling AddendasApi->apiV4Cfdi40CreatePost: ', $e->getMessage(), PHP_EOL;
}
?>

Parameters

Name Type Description Notes
body object [optional]
content_type string [optional]
f_plugin string [optional]
f_api_key string [optional]
f_secret_key string [optional]

Return type

void (empty response body)

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

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