API Façade GUN (GAMMA 2) vers EDI

Destinataire

message1010

Endpoint de déclenchement d'un message 1010

Endpoint de déclenchement d'un message 1010


/1010

Usage and SDK Samples

curl -X POST \
 -H "Accept: text/plain" \
 -H "Content-Type: application/json" \
 "http://localhost/1010" \
 -d '{
  "AttachmentOfReceivableExposedMovementsConsignee" : {
    "DebtsMovementsIdentifier" : [ {
      "NumeroCreance" : "00ABC00000000000",
      "MovementIdentifier" : [ {
        "ARC" : "09GKL5BWYERZV82CJV0V1",
        "SeqNumber" : "98"
      }, {
        "ARC" : "09GKL5BWYERZV82CJV0V1",
        "SeqNumber" : "98"
      }, {
        "ARC" : "09GKL5BWYERZV82CJV0V1",
        "SeqNumber" : "98"
      }, {
        "ARC" : "09GKL5BWYERZV82CJV0V1",
        "SeqNumber" : "98"
      }, {
        "ARC" : "09GKL5BWYERZV82CJV0V1",
        "SeqNumber" : "98"
      } ]
    }, {
      "NumeroCreance" : "00ABC00000000000",
      "MovementIdentifier" : [ {
        "ARC" : "09GKL5BWYERZV82CJV0V1",
        "SeqNumber" : "98"
      }, {
        "ARC" : "09GKL5BWYERZV82CJV0V1",
        "SeqNumber" : "98"
      }, {
        "ARC" : "09GKL5BWYERZV82CJV0V1",
        "SeqNumber" : "98"
      }, {
        "ARC" : "09GKL5BWYERZV82CJV0V1",
        "SeqNumber" : "98"
      }, {
        "ARC" : "09GKL5BWYERZV82CJV0V1",
        "SeqNumber" : "98"
      } ]
    }, {
      "NumeroCreance" : "00ABC00000000000",
      "MovementIdentifier" : [ {
        "ARC" : "09GKL5BWYERZV82CJV0V1",
        "SeqNumber" : "98"
      }, {
        "ARC" : "09GKL5BWYERZV82CJV0V1",
        "SeqNumber" : "98"
      }, {
        "ARC" : "09GKL5BWYERZV82CJV0V1",
        "SeqNumber" : "98"
      }, {
        "ARC" : "09GKL5BWYERZV82CJV0V1",
        "SeqNumber" : "98"
      }, {
        "ARC" : "09GKL5BWYERZV82CJV0V1",
        "SeqNumber" : "98"
      } ]
    }, {
      "NumeroCreance" : "00ABC00000000000",
      "MovementIdentifier" : [ {
        "ARC" : "09GKL5BWYERZV82CJV0V1",
        "SeqNumber" : "98"
      }, {
        "ARC" : "09GKL5BWYERZV82CJV0V1",
        "SeqNumber" : "98"
      }, {
        "ARC" : "09GKL5BWYERZV82CJV0V1",
        "SeqNumber" : "98"
      }, {
        "ARC" : "09GKL5BWYERZV82CJV0V1",
        "SeqNumber" : "98"
      }, {
        "ARC" : "09GKL5BWYERZV82CJV0V1",
        "SeqNumber" : "98"
      } ]
    }, {
      "NumeroCreance" : "00ABC00000000000",
      "MovementIdentifier" : [ {
        "ARC" : "09GKL5BWYERZV82CJV0V1",
        "SeqNumber" : "98"
      }, {
        "ARC" : "09GKL5BWYERZV82CJV0V1",
        "SeqNumber" : "98"
      }, {
        "ARC" : "09GKL5BWYERZV82CJV0V1",
        "SeqNumber" : "98"
      }, {
        "ARC" : "09GKL5BWYERZV82CJV0V1",
        "SeqNumber" : "98"
      }, {
        "ARC" : "09GKL5BWYERZV82CJV0V1",
        "SeqNumber" : "98"
      } ]
    } ],
    "OperatorReference" : {
      "TraderExciseNumber" : "WNYmU9ai8UArd"
    }
  }
}'
import org.openapitools.client.*;
import org.openapitools.client.auth.*;
import org.openapitools.client.model.*;
import org.openapitools.client.api.DestinataireApi;

import java.io.File;
import java.util.*;

public class DestinataireApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        DestinataireApi apiInstance = new DestinataireApi();
        String correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant corrélé au messageId du message initial
        BodyType1010 bodyType1010 = ; // BodyType1010 | 

        try {
            'String' result = apiInstance.message1010(correlationId, bodyType1010);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DestinataireApi#message1010");
            e.printStackTrace();
        }
    }
}
import org.openapitools.client.api.DestinataireApi;

public class DestinataireApiExample {
    public static void main(String[] args) {
        DestinataireApi apiInstance = new DestinataireApi();
        String correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant corrélé au messageId du message initial
        BodyType1010 bodyType1010 = ; // BodyType1010 | 

        try {
            'String' result = apiInstance.message1010(correlationId, bodyType1010);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DestinataireApi#message1010");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DestinataireApi *apiInstance = [[DestinataireApi alloc] init];
String *correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // Identifiant corrélé au messageId du message initial (default to null)
BodyType1010 *bodyType1010 = ; //  (optional)

// Endpoint de déclenchement d'un message 1010
[apiInstance message1010With:correlationId
    bodyType1010:bodyType1010
              completionHandler: ^('String' output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var ApiFaccediladeGunGamma2VersEdi = require('api_faccedilade_gun__gamma_2_vers_edi');

// Create an instance of the API class
var api = new ApiFaccediladeGunGamma2VersEdi.DestinataireApi()
var correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // {String} Identifiant corrélé au messageId du message initial
var opts = {
  'bodyType1010':  // {BodyType1010} 
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.message1010(correlationId, opts, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class message1010Example
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new DestinataireApi();
            var correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b;  // String | Identifiant corrélé au messageId du message initial (default to null)
            var bodyType1010 = new BodyType1010(); // BodyType1010 |  (optional) 

            try {
                // Endpoint de déclenchement d'un message 1010
                'String' result = apiInstance.message1010(correlationId, bodyType1010);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DestinataireApi.message1010: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DestinataireApi();
$correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant corrélé au messageId du message initial
$bodyType1010 = ; // BodyType1010 | 

try {
    $result = $api_instance->message1010($correlationId, $bodyType1010);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DestinataireApi->message1010: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DestinataireApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DestinataireApi->new();
my $correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; # String | Identifiant corrélé au messageId du message initial
my $bodyType1010 = WWW::OPenAPIClient::Object::BodyType1010->new(); # BodyType1010 | 

eval {
    my $result = $api_instance->message1010(correlationId => $correlationId, bodyType1010 => $bodyType1010);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DestinataireApi->message1010: $@\n";
}
from __future__ import print_statement
import time
import openapi_client
from openapi_client.rest import ApiException
from pprint import pprint

# Create an instance of the API class
api_instance = openapi_client.DestinataireApi()
correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b # String | Identifiant corrélé au messageId du message initial (default to null)
bodyType1010 =  # BodyType1010 |  (optional)

try:
    # Endpoint de déclenchement d'un message 1010
    api_response = api_instance.message1010(correlationId, bodyType1010=bodyType1010)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DestinataireApi->message1010: %s\n" % e)
extern crate DestinataireApi;

pub fn main() {
    let correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String
    let bodyType1010 = ; // BodyType1010

    let mut context = DestinataireApi::Context::default();
    let result = client.message1010(correlationId, bodyType1010, &context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Header parameters
Name Description
correlationId*
String
Identifiant corrélé au messageId du message initial
Required
Body parameters
Name Description
bodyType1010

Responses


message1020

Endpoint de déclenchement d'un message 1020

Endpoint de déclenchement d'un message 1020


/1020

Usage and SDK Samples

curl -X POST \
 -H "Accept: text/plain" \
 -H "Content-Type: application/json" \
 "http://localhost/1020" \
 -d '{
  "FailedCertificateMovementsConsignee" : [ {
    "DemandesCorrection" : [ {
      "RaisonMotif" : null,
      "InfoComplementaire" : [ "@NM1", "@NM1", "@NM1", "@NM1", "@NM1" ]
    }, {
      "RaisonMotif" : null,
      "InfoComplementaire" : [ "@NM1", "@NM1", "@NM1", "@NM1", "@NM1" ]
    }, {
      "RaisonMotif" : null,
      "InfoComplementaire" : [ "@NM1", "@NM1", "@NM1", "@NM1", "@NM1" ]
    }, {
      "RaisonMotif" : null,
      "InfoComplementaire" : [ "@NM1", "@NM1", "@NM1", "@NM1", "@NM1" ]
    }, {
      "RaisonMotif" : null,
      "InfoComplementaire" : [ "@NM1", "@NM1", "@NM1", "@NM1", "@NM1" ]
    } ],
    "MovementIdentifier" : {
      "ARC" : "09GKL5BWYERZV82CJV0V1",
      "SeqNumber" : "98"
    }
  }, {
    "DemandesCorrection" : [ {
      "RaisonMotif" : null,
      "InfoComplementaire" : [ "@NM1", "@NM1", "@NM1", "@NM1", "@NM1" ]
    }, {
      "RaisonMotif" : null,
      "InfoComplementaire" : [ "@NM1", "@NM1", "@NM1", "@NM1", "@NM1" ]
    }, {
      "RaisonMotif" : null,
      "InfoComplementaire" : [ "@NM1", "@NM1", "@NM1", "@NM1", "@NM1" ]
    }, {
      "RaisonMotif" : null,
      "InfoComplementaire" : [ "@NM1", "@NM1", "@NM1", "@NM1", "@NM1" ]
    }, {
      "RaisonMotif" : null,
      "InfoComplementaire" : [ "@NM1", "@NM1", "@NM1", "@NM1", "@NM1" ]
    } ],
    "MovementIdentifier" : {
      "ARC" : "09GKL5BWYERZV82CJV0V1",
      "SeqNumber" : "98"
    }
  }, {
    "DemandesCorrection" : [ {
      "RaisonMotif" : null,
      "InfoComplementaire" : [ "@NM1", "@NM1", "@NM1", "@NM1", "@NM1" ]
    }, {
      "RaisonMotif" : null,
      "InfoComplementaire" : [ "@NM1", "@NM1", "@NM1", "@NM1", "@NM1" ]
    }, {
      "RaisonMotif" : null,
      "InfoComplementaire" : [ "@NM1", "@NM1", "@NM1", "@NM1", "@NM1" ]
    }, {
      "RaisonMotif" : null,
      "InfoComplementaire" : [ "@NM1", "@NM1", "@NM1", "@NM1", "@NM1" ]
    }, {
      "RaisonMotif" : null,
      "InfoComplementaire" : [ "@NM1", "@NM1", "@NM1", "@NM1", "@NM1" ]
    } ],
    "MovementIdentifier" : {
      "ARC" : "09GKL5BWYERZV82CJV0V1",
      "SeqNumber" : "98"
    }
  }, {
    "DemandesCorrection" : [ {
      "RaisonMotif" : null,
      "InfoComplementaire" : [ "@NM1", "@NM1", "@NM1", "@NM1", "@NM1" ]
    }, {
      "RaisonMotif" : null,
      "InfoComplementaire" : [ "@NM1", "@NM1", "@NM1", "@NM1", "@NM1" ]
    }, {
      "RaisonMotif" : null,
      "InfoComplementaire" : [ "@NM1", "@NM1", "@NM1", "@NM1", "@NM1" ]
    }, {
      "RaisonMotif" : null,
      "InfoComplementaire" : [ "@NM1", "@NM1", "@NM1", "@NM1", "@NM1" ]
    }, {
      "RaisonMotif" : null,
      "InfoComplementaire" : [ "@NM1", "@NM1", "@NM1", "@NM1", "@NM1" ]
    } ],
    "MovementIdentifier" : {
      "ARC" : "09GKL5BWYERZV82CJV0V1",
      "SeqNumber" : "98"
    }
  }, {
    "DemandesCorrection" : [ {
      "RaisonMotif" : null,
      "InfoComplementaire" : [ "@NM1", "@NM1", "@NM1", "@NM1", "@NM1" ]
    }, {
      "RaisonMotif" : null,
      "InfoComplementaire" : [ "@NM1", "@NM1", "@NM1", "@NM1", "@NM1" ]
    }, {
      "RaisonMotif" : null,
      "InfoComplementaire" : [ "@NM1", "@NM1", "@NM1", "@NM1", "@NM1" ]
    }, {
      "RaisonMotif" : null,
      "InfoComplementaire" : [ "@NM1", "@NM1", "@NM1", "@NM1", "@NM1" ]
    }, {
      "RaisonMotif" : null,
      "InfoComplementaire" : [ "@NM1", "@NM1", "@NM1", "@NM1", "@NM1" ]
    } ],
    "MovementIdentifier" : {
      "ARC" : "09GKL5BWYERZV82CJV0V1",
      "SeqNumber" : "98"
    }
  } ]
}'
import org.openapitools.client.*;
import org.openapitools.client.auth.*;
import org.openapitools.client.model.*;
import org.openapitools.client.api.DestinataireApi;

import java.io.File;
import java.util.*;

public class DestinataireApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        DestinataireApi apiInstance = new DestinataireApi();
        String correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant corrélé au messageId du message initial
        BodyType1020 bodyType1020 = ; // BodyType1020 | 

        try {
            'String' result = apiInstance.message1020(correlationId, bodyType1020);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DestinataireApi#message1020");
            e.printStackTrace();
        }
    }
}
import org.openapitools.client.api.DestinataireApi;

public class DestinataireApiExample {
    public static void main(String[] args) {
        DestinataireApi apiInstance = new DestinataireApi();
        String correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant corrélé au messageId du message initial
        BodyType1020 bodyType1020 = ; // BodyType1020 | 

        try {
            'String' result = apiInstance.message1020(correlationId, bodyType1020);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DestinataireApi#message1020");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DestinataireApi *apiInstance = [[DestinataireApi alloc] init];
String *correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // Identifiant corrélé au messageId du message initial (default to null)
BodyType1020 *bodyType1020 = ; //  (optional)

// Endpoint de déclenchement d'un message 1020
[apiInstance message1020With:correlationId
    bodyType1020:bodyType1020
              completionHandler: ^('String' output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var ApiFaccediladeGunGamma2VersEdi = require('api_faccedilade_gun__gamma_2_vers_edi');

// Create an instance of the API class
var api = new ApiFaccediladeGunGamma2VersEdi.DestinataireApi()
var correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // {String} Identifiant corrélé au messageId du message initial
var opts = {
  'bodyType1020':  // {BodyType1020} 
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.message1020(correlationId, opts, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class message1020Example
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new DestinataireApi();
            var correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b;  // String | Identifiant corrélé au messageId du message initial (default to null)
            var bodyType1020 = new BodyType1020(); // BodyType1020 |  (optional) 

            try {
                // Endpoint de déclenchement d'un message 1020
                'String' result = apiInstance.message1020(correlationId, bodyType1020);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DestinataireApi.message1020: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DestinataireApi();
$correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant corrélé au messageId du message initial
$bodyType1020 = ; // BodyType1020 | 

try {
    $result = $api_instance->message1020($correlationId, $bodyType1020);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DestinataireApi->message1020: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DestinataireApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DestinataireApi->new();
my $correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; # String | Identifiant corrélé au messageId du message initial
my $bodyType1020 = WWW::OPenAPIClient::Object::BodyType1020->new(); # BodyType1020 | 

eval {
    my $result = $api_instance->message1020(correlationId => $correlationId, bodyType1020 => $bodyType1020);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DestinataireApi->message1020: $@\n";
}
from __future__ import print_statement
import time
import openapi_client
from openapi_client.rest import ApiException
from pprint import pprint

# Create an instance of the API class
api_instance = openapi_client.DestinataireApi()
correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b # String | Identifiant corrélé au messageId du message initial (default to null)
bodyType1020 =  # BodyType1020 |  (optional)

try:
    # Endpoint de déclenchement d'un message 1020
    api_response = api_instance.message1020(correlationId, bodyType1020=bodyType1020)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DestinataireApi->message1020: %s\n" % e)
extern crate DestinataireApi;

pub fn main() {
    let correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String
    let bodyType1020 = ; // BodyType1020

    let mut context = DestinataireApi::Context::default();
    let result = client.message1020(correlationId, bodyType1020, &context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Header parameters
Name Description
correlationId*
String
Identifiant corrélé au messageId du message initial
Required
Body parameters
Name Description
bodyType1020

Responses


message801

Endpoint de déclenchement d'un message 801

Endpoint de déclenchement d'un message 801


/801

Usage and SDK Samples

curl -X POST \
 -H "Accept: text/plain" \
 -H "Content-Type: application/json" \
 "http://localhost/801" \
 -d '{
  "EADESADContainer" : {
    "DocumentCertificate" : [ {
      "__language" : "tg",
      "DocumentDescription" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "DocumentType" : "86u",
      "ReferenceOfDocument" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "DocumentReference" : "azertyui"
    }, {
      "__language" : "tg",
      "DocumentDescription" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "DocumentType" : "86u",
      "ReferenceOfDocument" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "DocumentReference" : "azertyui"
    }, {
      "__language" : "tg",
      "DocumentDescription" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "DocumentType" : "86u",
      "ReferenceOfDocument" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "DocumentReference" : "azertyui"
    }, {
      "__language" : "tg",
      "DocumentDescription" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "DocumentType" : "86u",
      "ReferenceOfDocument" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "DocumentReference" : "azertyui"
    }, {
      "__language" : "tg",
      "DocumentDescription" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "DocumentType" : "86u",
      "ReferenceOfDocument" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "DocumentReference" : "azertyui"
    } ],
    "MovementGuarantee" : {
      "GuarantorTrader" : [ {
        "StreetName" : "azertyuio",
        "__language" : "tg",
        "TraderName" : "edcvfr",
        "StreetNumber" : "abc",
        "City" : "asxx",
        "TraderExciseNumber" : "WNYmU9ai8UArd",
        "VatNumber" : "fredc",
        "Postcode" : "#bp5"
      }, {
        "StreetName" : "azertyuio",
        "__language" : "tg",
        "TraderName" : "edcvfr",
        "StreetNumber" : "abc",
        "City" : "asxx",
        "TraderExciseNumber" : "WNYmU9ai8UArd",
        "VatNumber" : "fredc",
        "Postcode" : "#bp5"
      } ],
      "GuarantorTypeCode" : null
    },
    "ExciseMovement" : {
      "AdministrativeReferenceCode" : "09GKL5BWYERZV82CJV0V1",
      "DateAndTimeOfValidationOfEadEsad" : "2022-01-31T14:05:01"
    },
    "ConsigneeTrader" : {
      "StreetName" : "azertyuio",
      "__language" : "tg",
      "TraderName" : "edcvfr",
      "EoriNumber" : "FR0123456789",
      "Traderid" : "aqwxsz",
      "StreetNumber" : "abc",
      "City" : "asxx",
      "Postcode" : "#bp5"
    },
    "PlaceOfDispatchTrader" : {
      "StreetName" : "azertyuio",
      "__language" : "tg",
      "TraderName" : "edcvfr",
      "ReferenceOfTaxWarehouse" : "ReferenceOfTaxWarehouse",
      "StreetNumber" : "abc",
      "City" : "asxx",
      "Postcode" : "#bp5"
    },
    "Attributes" : {
      "DeferredSubmissionFlag" : null,
      "SubmissionMessageType" : null
    },
    "HeaderEadEsad" : {
      "DateAndTimeOfUpdateValidation" : "2022-01-31T14:05:01",
      "DestinationTypeCode" : null,
      "JourneyTime" : "H24",
      "SequenceNumber" : "98",
      "TransportArrangement" : null
    },
    "ComplementConsigneeTrader" : {
      "MemberStateCode" : "TG",
      "DateNAttConsign" : "2022-01-31T00:00:00.000+00:00",
      "SerialNumberOfCertificateOfExemption" : "abcdefghij"
    },
    "DispatchImportOffice" : {
      "ReferenceNumber" : "ReferenceNumber"
    },
    "EadEsad" : {
      "DateOfDispatch" : "2022-01-31T00:00:00.000+00:00",
      "ImportSad" : [ {
        "ImportSadNumber" : "[4X3S!U[0z$+f"
      }, {
        "ImportSadNumber" : "[4X3S!U[0z$+f"
      }, {
        "ImportSadNumber" : "[4X3S!U[0z$+f"
      }, {
        "ImportSadNumber" : "[4X3S!U[0z$+f"
      }, {
        "ImportSadNumber" : "[4X3S!U[0z$+f"
      } ],
      "UpstreamArc" : "09GKL5BWYERZV82CJV0V1",
      "LocalReferenceNumber" : "~00J]fkDK1(VGkj>TeJ6",
      "OriginTypeCode" : null,
      "InvoiceNumber" : "azertyui",
      "InvoiceDate" : "2022-01-31T00:00:00.000+00:00",
      "TimeOfDispatch" : "01:43:45"
    },
    "FirstTransporterTrader" : {
      "StreetName" : "azertyuio",
      "__language" : "tg",
      "TraderName" : "edcvfr",
      "StreetNumber" : "abc",
      "City" : "asxx",
      "VatNumber" : "fredc",
      "Postcode" : "#bp5"
    },
    "ConsignorTrader" : {
      "StreetName" : "azertyuio",
      "__language" : "tg",
      "TraderName" : "edcvfr",
      "StreetNumber" : "abc",
      "City" : "asxx",
      "TraderExciseNumber" : "WNYmU9ai8UArd",
      "Postcode" : "#bp5"
    },
    "DeliveryPlaceTrader" : {
      "StreetName" : "azertyuio",
      "__language" : "tg",
      "TraderName" : "edcvfr",
      "Traderid" : "aqwxsz",
      "StreetNumber" : "abc",
      "City" : "asxx",
      "Postcode" : "#bp5"
    },
    "TransportDetails" : [ {
      "__language" : "tg",
      "ComplementaryInformation" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "SealInformation" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "TransportUnitCode" : "29",
      "IdentityOfTransportUnits" : "azertyui",
      "CommercialSealIdentification" : "azertyui"
    }, {
      "__language" : "tg",
      "ComplementaryInformation" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "SealInformation" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "TransportUnitCode" : "29",
      "IdentityOfTransportUnits" : "azertyui",
      "CommercialSealIdentification" : "azertyui"
    }, {
      "__language" : "tg",
      "ComplementaryInformation" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "SealInformation" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "TransportUnitCode" : "29",
      "IdentityOfTransportUnits" : "azertyui",
      "CommercialSealIdentification" : "azertyui"
    }, {
      "__language" : "tg",
      "ComplementaryInformation" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "SealInformation" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "TransportUnitCode" : "29",
      "IdentityOfTransportUnits" : "azertyui",
      "CommercialSealIdentification" : "azertyui"
    }, {
      "__language" : "tg",
      "ComplementaryInformation" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "SealInformation" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "TransportUnitCode" : "29",
      "IdentityOfTransportUnits" : "azertyui",
      "CommercialSealIdentification" : "azertyui"
    } ],
    "DeliveryPlaceCustomsOffice" : {
      "ReferenceNumber" : "BWgnQuPY"
    },
    "TransportMode" : {
      "__language" : "tg",
      "TransportModeCode" : "33",
      "ComplementaryInformation" : {
        "__language" : "tg",
        "_content_" : "adverty"
      }
    },
    "BodyEadEsad" : [ {
      "AlcoholicStrengthByVolumeInPercentage" : "8186 ou 590.2 ou 802.66",
      "BrandNameOfProducts" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "DesignationOfOrigin" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "DegreePlato" : "8186 ou 590.2 ou 802.66",
      "FiscalMarkUsedFlag" : null,
      "CodeCompl" : "CodeCompl",
      "Quantity" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "BodyRecordUniqueReference" : "553",
      "CommercialDescription" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "Density" : "8186 ou 590.2 ou 802.66",
      "PrixFact" : "5850130 ou 95991385 ou 1234567890",
      "GrossMass" : "1831870521 ou 7361611.7 ou 907545.17 ou 6057.125 ou 6586454.2069 ou 35.68430 ou 3979.145140",
      "ExciseProductCode" : "@NM1",
      "NetMass" : "1831870521 ou 7361611.7 ou 907545.17 ou 6057.125 ou 6586454.2069 ou 35.68430 ou 3979.145140",
      "SizeOfProducer" : "865122304357",
      "FiscalMark" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "CnCode" : "29263090",
      "WineProduct" : {
        "WineGrowingZoneCode" : "29",
        "__language" : "tg",
        "WineOperation" : [ {
          "WineOperationCode" : "33"
        }, {
          "WineOperationCode" : "33"
        }, {
          "WineOperationCode" : "33"
        }, {
          "WineOperationCode" : "33"
        }, {
          "WineOperationCode" : "33"
        } ],
        "ThirdCountryOfDestination" : "Tg",
        "WineProductCategory" : null,
        "OtherInformation" : {
          "__language" : "tg",
          "_content_" : "qwertyazerty"
        },
        "ThirdCountryOfOrigin" : "Tg"
      },
      "Package" : [ {
        "__language" : "tg",
        "KindOfPackages" : "D!",
        "ShippingMarks" : "azerty",
        "SealInformation" : {
          "__language" : "tg",
          "_content_" : "qwertyazerty"
        },
        "NumberOfPackages" : "50970",
        "CommercialSealIdentification" : "azertyui"
      }, {
        "__language" : "tg",
        "KindOfPackages" : "D!",
        "ShippingMarks" : "azerty",
        "SealInformation" : {
          "__language" : "tg",
          "_content_" : "qwertyazerty"
        },
        "NumberOfPackages" : "50970",
        "CommercialSealIdentification" : "azertyui"
      }, {
        "__language" : "tg",
        "KindOfPackages" : "D!",
        "ShippingMarks" : "azerty",
        "SealInformation" : {
          "__language" : "tg",
          "_content_" : "qwertyazerty"
        },
        "NumberOfPackages" : "50970",
        "CommercialSealIdentification" : "azertyui"
      }, {
        "__language" : "tg",
        "KindOfPackages" : "D!",
        "ShippingMarks" : "azerty",
        "SealInformation" : {
          "__language" : "tg",
          "_content_" : "qwertyazerty"
        },
        "NumberOfPackages" : "50970",
        "CommercialSealIdentification" : "azertyui"
      }, {
        "__language" : "tg",
        "KindOfPackages" : "D!",
        "ShippingMarks" : "azerty",
        "SealInformation" : {
          "__language" : "tg",
          "_content_" : "qwertyazerty"
        },
        "NumberOfPackages" : "50970",
        "CommercialSealIdentification" : "azertyui"
      } ],
      "IndependentSmallProducersDeclaration" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "MaturationPeriodOrAgeOfProducts" : {
        "__language" : "tg",
        "_content_" : "azertys"
      }
    }, {
      "AlcoholicStrengthByVolumeInPercentage" : "8186 ou 590.2 ou 802.66",
      "BrandNameOfProducts" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "DesignationOfOrigin" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "DegreePlato" : "8186 ou 590.2 ou 802.66",
      "FiscalMarkUsedFlag" : null,
      "CodeCompl" : "CodeCompl",
      "Quantity" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "BodyRecordUniqueReference" : "553",
      "CommercialDescription" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "Density" : "8186 ou 590.2 ou 802.66",
      "PrixFact" : "5850130 ou 95991385 ou 1234567890",
      "GrossMass" : "1831870521 ou 7361611.7 ou 907545.17 ou 6057.125 ou 6586454.2069 ou 35.68430 ou 3979.145140",
      "ExciseProductCode" : "@NM1",
      "NetMass" : "1831870521 ou 7361611.7 ou 907545.17 ou 6057.125 ou 6586454.2069 ou 35.68430 ou 3979.145140",
      "SizeOfProducer" : "865122304357",
      "FiscalMark" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "CnCode" : "29263090",
      "WineProduct" : {
        "WineGrowingZoneCode" : "29",
        "__language" : "tg",
        "WineOperation" : [ {
          "WineOperationCode" : "33"
        }, {
          "WineOperationCode" : "33"
        }, {
          "WineOperationCode" : "33"
        }, {
          "WineOperationCode" : "33"
        }, {
          "WineOperationCode" : "33"
        } ],
        "ThirdCountryOfDestination" : "Tg",
        "WineProductCategory" : null,
        "OtherInformation" : {
          "__language" : "tg",
          "_content_" : "qwertyazerty"
        },
        "ThirdCountryOfOrigin" : "Tg"
      },
      "Package" : [ {
        "__language" : "tg",
        "KindOfPackages" : "D!",
        "ShippingMarks" : "azerty",
        "SealInformation" : {
          "__language" : "tg",
          "_content_" : "qwertyazerty"
        },
        "NumberOfPackages" : "50970",
        "CommercialSealIdentification" : "azertyui"
      }, {
        "__language" : "tg",
        "KindOfPackages" : "D!",
        "ShippingMarks" : "azerty",
        "SealInformation" : {
          "__language" : "tg",
          "_content_" : "qwertyazerty"
        },
        "NumberOfPackages" : "50970",
        "CommercialSealIdentification" : "azertyui"
      }, {
        "__language" : "tg",
        "KindOfPackages" : "D!",
        "ShippingMarks" : "azerty",
        "SealInformation" : {
          "__language" : "tg",
          "_content_" : "qwertyazerty"
        },
        "NumberOfPackages" : "50970",
        "CommercialSealIdentification" : "azertyui"
      }, {
        "__language" : "tg",
        "KindOfPackages" : "D!",
        "ShippingMarks" : "azerty",
        "SealInformation" : {
          "__language" : "tg",
          "_content_" : "qwertyazerty"
        },
        "NumberOfPackages" : "50970",
        "CommercialSealIdentification" : "azertyui"
      }, {
        "__language" : "tg",
        "KindOfPackages" : "D!",
        "ShippingMarks" : "azerty",
        "SealInformation" : {
          "__language" : "tg",
          "_content_" : "qwertyazerty"
        },
        "NumberOfPackages" : "50970",
        "CommercialSealIdentification" : "azertyui"
      } ],
      "IndependentSmallProducersDeclaration" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "MaturationPeriodOrAgeOfProducts" : {
        "__language" : "tg",
        "_content_" : "azertys"
      }
    }, {
      "AlcoholicStrengthByVolumeInPercentage" : "8186 ou 590.2 ou 802.66",
      "BrandNameOfProducts" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "DesignationOfOrigin" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "DegreePlato" : "8186 ou 590.2 ou 802.66",
      "FiscalMarkUsedFlag" : null,
      "CodeCompl" : "CodeCompl",
      "Quantity" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "BodyRecordUniqueReference" : "553",
      "CommercialDescription" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "Density" : "8186 ou 590.2 ou 802.66",
      "PrixFact" : "5850130 ou 95991385 ou 1234567890",
      "GrossMass" : "1831870521 ou 7361611.7 ou 907545.17 ou 6057.125 ou 6586454.2069 ou 35.68430 ou 3979.145140",
      "ExciseProductCode" : "@NM1",
      "NetMass" : "1831870521 ou 7361611.7 ou 907545.17 ou 6057.125 ou 6586454.2069 ou 35.68430 ou 3979.145140",
      "SizeOfProducer" : "865122304357",
      "FiscalMark" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "CnCode" : "29263090",
      "WineProduct" : {
        "WineGrowingZoneCode" : "29",
        "__language" : "tg",
        "WineOperation" : [ {
          "WineOperationCode" : "33"
        }, {
          "WineOperationCode" : "33"
        }, {
          "WineOperationCode" : "33"
        }, {
          "WineOperationCode" : "33"
        }, {
          "WineOperationCode" : "33"
        } ],
        "ThirdCountryOfDestination" : "Tg",
        "WineProductCategory" : null,
        "OtherInformation" : {
          "__language" : "tg",
          "_content_" : "qwertyazerty"
        },
        "ThirdCountryOfOrigin" : "Tg"
      },
      "Package" : [ {
        "__language" : "tg",
        "KindOfPackages" : "D!",
        "ShippingMarks" : "azerty",
        "SealInformation" : {
          "__language" : "tg",
          "_content_" : "qwertyazerty"
        },
        "NumberOfPackages" : "50970",
        "CommercialSealIdentification" : "azertyui"
      }, {
        "__language" : "tg",
        "KindOfPackages" : "D!",
        "ShippingMarks" : "azerty",
        "SealInformation" : {
          "__language" : "tg",
          "_content_" : "qwertyazerty"
        },
        "NumberOfPackages" : "50970",
        "CommercialSealIdentification" : "azertyui"
      }, {
        "__language" : "tg",
        "KindOfPackages" : "D!",
        "ShippingMarks" : "azerty",
        "SealInformation" : {
          "__language" : "tg",
          "_content_" : "qwertyazerty"
        },
        "NumberOfPackages" : "50970",
        "CommercialSealIdentification" : "azertyui"
      }, {
        "__language" : "tg",
        "KindOfPackages" : "D!",
        "ShippingMarks" : "azerty",
        "SealInformation" : {
          "__language" : "tg",
          "_content_" : "qwertyazerty"
        },
        "NumberOfPackages" : "50970",
        "CommercialSealIdentification" : "azertyui"
      }, {
        "__language" : "tg",
        "KindOfPackages" : "D!",
        "ShippingMarks" : "azerty",
        "SealInformation" : {
          "__language" : "tg",
          "_content_" : "qwertyazerty"
        },
        "NumberOfPackages" : "50970",
        "CommercialSealIdentification" : "azertyui"
      } ],
      "IndependentSmallProducersDeclaration" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "MaturationPeriodOrAgeOfProducts" : {
        "__language" : "tg",
        "_content_" : "azertys"
      }
    }, {
      "AlcoholicStrengthByVolumeInPercentage" : "8186 ou 590.2 ou 802.66",
      "BrandNameOfProducts" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "DesignationOfOrigin" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "DegreePlato" : "8186 ou 590.2 ou 802.66",
      "FiscalMarkUsedFlag" : null,
      "CodeCompl" : "CodeCompl",
      "Quantity" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "BodyRecordUniqueReference" : "553",
      "CommercialDescription" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "Density" : "8186 ou 590.2 ou 802.66",
      "PrixFact" : "5850130 ou 95991385 ou 1234567890",
      "GrossMass" : "1831870521 ou 7361611.7 ou 907545.17 ou 6057.125 ou 6586454.2069 ou 35.68430 ou 3979.145140",
      "ExciseProductCode" : "@NM1",
      "NetMass" : "1831870521 ou 7361611.7 ou 907545.17 ou 6057.125 ou 6586454.2069 ou 35.68430 ou 3979.145140",
      "SizeOfProducer" : "865122304357",
      "FiscalMark" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "CnCode" : "29263090",
      "WineProduct" : {
        "WineGrowingZoneCode" : "29",
        "__language" : "tg",
        "WineOperation" : [ {
          "WineOperationCode" : "33"
        }, {
          "WineOperationCode" : "33"
        }, {
          "WineOperationCode" : "33"
        }, {
          "WineOperationCode" : "33"
        }, {
          "WineOperationCode" : "33"
        } ],
        "ThirdCountryOfDestination" : "Tg",
        "WineProductCategory" : null,
        "OtherInformation" : {
          "__language" : "tg",
          "_content_" : "qwertyazerty"
        },
        "ThirdCountryOfOrigin" : "Tg"
      },
      "Package" : [ {
        "__language" : "tg",
        "KindOfPackages" : "D!",
        "ShippingMarks" : "azerty",
        "SealInformation" : {
          "__language" : "tg",
          "_content_" : "qwertyazerty"
        },
        "NumberOfPackages" : "50970",
        "CommercialSealIdentification" : "azertyui"
      }, {
        "__language" : "tg",
        "KindOfPackages" : "D!",
        "ShippingMarks" : "azerty",
        "SealInformation" : {
          "__language" : "tg",
          "_content_" : "qwertyazerty"
        },
        "NumberOfPackages" : "50970",
        "CommercialSealIdentification" : "azertyui"
      }, {
        "__language" : "tg",
        "KindOfPackages" : "D!",
        "ShippingMarks" : "azerty",
        "SealInformation" : {
          "__language" : "tg",
          "_content_" : "qwertyazerty"
        },
        "NumberOfPackages" : "50970",
        "CommercialSealIdentification" : "azertyui"
      }, {
        "__language" : "tg",
        "KindOfPackages" : "D!",
        "ShippingMarks" : "azerty",
        "SealInformation" : {
          "__language" : "tg",
          "_content_" : "qwertyazerty"
        },
        "NumberOfPackages" : "50970",
        "CommercialSealIdentification" : "azertyui"
      }, {
        "__language" : "tg",
        "KindOfPackages" : "D!",
        "ShippingMarks" : "azerty",
        "SealInformation" : {
          "__language" : "tg",
          "_content_" : "qwertyazerty"
        },
        "NumberOfPackages" : "50970",
        "CommercialSealIdentification" : "azertyui"
      } ],
      "IndependentSmallProducersDeclaration" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "MaturationPeriodOrAgeOfProducts" : {
        "__language" : "tg",
        "_content_" : "azertys"
      }
    }, {
      "AlcoholicStrengthByVolumeInPercentage" : "8186 ou 590.2 ou 802.66",
      "BrandNameOfProducts" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "DesignationOfOrigin" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "DegreePlato" : "8186 ou 590.2 ou 802.66",
      "FiscalMarkUsedFlag" : null,
      "CodeCompl" : "CodeCompl",
      "Quantity" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "BodyRecordUniqueReference" : "553",
      "CommercialDescription" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "Density" : "8186 ou 590.2 ou 802.66",
      "PrixFact" : "5850130 ou 95991385 ou 1234567890",
      "GrossMass" : "1831870521 ou 7361611.7 ou 907545.17 ou 6057.125 ou 6586454.2069 ou 35.68430 ou 3979.145140",
      "ExciseProductCode" : "@NM1",
      "NetMass" : "1831870521 ou 7361611.7 ou 907545.17 ou 6057.125 ou 6586454.2069 ou 35.68430 ou 3979.145140",
      "SizeOfProducer" : "865122304357",
      "FiscalMark" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "CnCode" : "29263090",
      "WineProduct" : {
        "WineGrowingZoneCode" : "29",
        "__language" : "tg",
        "WineOperation" : [ {
          "WineOperationCode" : "33"
        }, {
          "WineOperationCode" : "33"
        }, {
          "WineOperationCode" : "33"
        }, {
          "WineOperationCode" : "33"
        }, {
          "WineOperationCode" : "33"
        } ],
        "ThirdCountryOfDestination" : "Tg",
        "WineProductCategory" : null,
        "OtherInformation" : {
          "__language" : "tg",
          "_content_" : "qwertyazerty"
        },
        "ThirdCountryOfOrigin" : "Tg"
      },
      "Package" : [ {
        "__language" : "tg",
        "KindOfPackages" : "D!",
        "ShippingMarks" : "azerty",
        "SealInformation" : {
          "__language" : "tg",
          "_content_" : "qwertyazerty"
        },
        "NumberOfPackages" : "50970",
        "CommercialSealIdentification" : "azertyui"
      }, {
        "__language" : "tg",
        "KindOfPackages" : "D!",
        "ShippingMarks" : "azerty",
        "SealInformation" : {
          "__language" : "tg",
          "_content_" : "qwertyazerty"
        },
        "NumberOfPackages" : "50970",
        "CommercialSealIdentification" : "azertyui"
      }, {
        "__language" : "tg",
        "KindOfPackages" : "D!",
        "ShippingMarks" : "azerty",
        "SealInformation" : {
          "__language" : "tg",
          "_content_" : "qwertyazerty"
        },
        "NumberOfPackages" : "50970",
        "CommercialSealIdentification" : "azertyui"
      }, {
        "__language" : "tg",
        "KindOfPackages" : "D!",
        "ShippingMarks" : "azerty",
        "SealInformation" : {
          "__language" : "tg",
          "_content_" : "qwertyazerty"
        },
        "NumberOfPackages" : "50970",
        "CommercialSealIdentification" : "azertyui"
      }, {
        "__language" : "tg",
        "KindOfPackages" : "D!",
        "ShippingMarks" : "azerty",
        "SealInformation" : {
          "__language" : "tg",
          "_content_" : "qwertyazerty"
        },
        "NumberOfPackages" : "50970",
        "CommercialSealIdentification" : "azertyui"
      } ],
      "IndependentSmallProducersDeclaration" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "MaturationPeriodOrAgeOfProducts" : {
        "__language" : "tg",
        "_content_" : "azertys"
      }
    } ],
    "CompetentAuthorityDispatchOffice" : {
      "ReferenceNumber" : "BWgnQuPY"
    },
    "TransportArrangerTrader" : {
      "StreetName" : "azertyuio",
      "__language" : "tg",
      "TraderName" : "edcvfr",
      "StreetNumber" : "abc",
      "City" : "asxx",
      "VatNumber" : "fredc",
      "Postcode" : "#bp5"
    }
  }
}'
import org.openapitools.client.*;
import org.openapitools.client.auth.*;
import org.openapitools.client.model.*;
import org.openapitools.client.api.DestinataireApi;

import java.io.File;
import java.util.*;

public class DestinataireApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        DestinataireApi apiInstance = new DestinataireApi();
        String correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant corrélé au messageId du message initial
        BodyType801 bodyType801 = ; // BodyType801 | 

        try {
            'String' result = apiInstance.message801(correlationId, bodyType801);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DestinataireApi#message801");
            e.printStackTrace();
        }
    }
}
import org.openapitools.client.api.DestinataireApi;

public class DestinataireApiExample {
    public static void main(String[] args) {
        DestinataireApi apiInstance = new DestinataireApi();
        String correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant corrélé au messageId du message initial
        BodyType801 bodyType801 = ; // BodyType801 | 

        try {
            'String' result = apiInstance.message801(correlationId, bodyType801);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DestinataireApi#message801");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DestinataireApi *apiInstance = [[DestinataireApi alloc] init];
String *correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // Identifiant corrélé au messageId du message initial (default to null)
BodyType801 *bodyType801 = ; //  (optional)

// Endpoint de déclenchement d'un message 801
[apiInstance message801With:correlationId
    bodyType801:bodyType801
              completionHandler: ^('String' output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var ApiFaccediladeGunGamma2VersEdi = require('api_faccedilade_gun__gamma_2_vers_edi');

// Create an instance of the API class
var api = new ApiFaccediladeGunGamma2VersEdi.DestinataireApi()
var correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // {String} Identifiant corrélé au messageId du message initial
var opts = {
  'bodyType801':  // {BodyType801} 
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.message801(correlationId, opts, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class message801Example
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new DestinataireApi();
            var correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b;  // String | Identifiant corrélé au messageId du message initial (default to null)
            var bodyType801 = new BodyType801(); // BodyType801 |  (optional) 

            try {
                // Endpoint de déclenchement d'un message 801
                'String' result = apiInstance.message801(correlationId, bodyType801);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DestinataireApi.message801: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DestinataireApi();
$correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant corrélé au messageId du message initial
$bodyType801 = ; // BodyType801 | 

try {
    $result = $api_instance->message801($correlationId, $bodyType801);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DestinataireApi->message801: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DestinataireApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DestinataireApi->new();
my $correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; # String | Identifiant corrélé au messageId du message initial
my $bodyType801 = WWW::OPenAPIClient::Object::BodyType801->new(); # BodyType801 | 

eval {
    my $result = $api_instance->message801(correlationId => $correlationId, bodyType801 => $bodyType801);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DestinataireApi->message801: $@\n";
}
from __future__ import print_statement
import time
import openapi_client
from openapi_client.rest import ApiException
from pprint import pprint

# Create an instance of the API class
api_instance = openapi_client.DestinataireApi()
correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b # String | Identifiant corrélé au messageId du message initial (default to null)
bodyType801 =  # BodyType801 |  (optional)

try:
    # Endpoint de déclenchement d'un message 801
    api_response = api_instance.message801(correlationId, bodyType801=bodyType801)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DestinataireApi->message801: %s\n" % e)
extern crate DestinataireApi;

pub fn main() {
    let correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String
    let bodyType801 = ; // BodyType801

    let mut context = DestinataireApi::Context::default();
    let result = client.message801(correlationId, bodyType801, &context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Header parameters
Name Description
correlationId*
String
Identifiant corrélé au messageId du message initial
Required
Body parameters
Name Description
bodyType801

Responses


message802

Endpoint de déclenchement d'un message 802

Endpoint de déclenchement d'un message 802


/802

Usage and SDK Samples

curl -X POST \
 -H "Accept: text/plain" \
 -H "Content-Type: application/json" \
 "http://localhost/802" \
 -d '{
  "ReminderMessageForExciseMovement" : {
    "ExciseMovement" : {
      "AdministrativeReferenceCode" : "09GKL5BWYERZV82CJV0V1",
      "SequenceNumber" : "98"
    },
    "Attributes" : {
      "ReminderMessageType" : null,
      "__language" : "tg",
      "DateAndTimeOfIssuanceOfReminder" : "2022-01-31T14:05:01",
      "ReminderInformation" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "LimitDateAndTime" : "2022-01-31T14:05:01",
      "Crosschecking" : "Crosschecking"
    }
  }
}'
import org.openapitools.client.*;
import org.openapitools.client.auth.*;
import org.openapitools.client.model.*;
import org.openapitools.client.api.DestinataireApi;

import java.io.File;
import java.util.*;

public class DestinataireApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        DestinataireApi apiInstance = new DestinataireApi();
        BodyType802 bodyType802 = ; // BodyType802 | 

        try {
            'String' result = apiInstance.message802(bodyType802);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DestinataireApi#message802");
            e.printStackTrace();
        }
    }
}
import org.openapitools.client.api.DestinataireApi;

public class DestinataireApiExample {
    public static void main(String[] args) {
        DestinataireApi apiInstance = new DestinataireApi();
        BodyType802 bodyType802 = ; // BodyType802 | 

        try {
            'String' result = apiInstance.message802(bodyType802);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DestinataireApi#message802");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DestinataireApi *apiInstance = [[DestinataireApi alloc] init];
BodyType802 *bodyType802 = ; //  (optional)

// Endpoint de déclenchement d'un message 802
[apiInstance message802With:bodyType802
              completionHandler: ^('String' output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var ApiFaccediladeGunGamma2VersEdi = require('api_faccedilade_gun__gamma_2_vers_edi');

// Create an instance of the API class
var api = new ApiFaccediladeGunGamma2VersEdi.DestinataireApi()
var opts = {
  'bodyType802':  // {BodyType802} 
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.message802(opts, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class message802Example
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new DestinataireApi();
            var bodyType802 = new BodyType802(); // BodyType802 |  (optional) 

            try {
                // Endpoint de déclenchement d'un message 802
                'String' result = apiInstance.message802(bodyType802);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DestinataireApi.message802: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DestinataireApi();
$bodyType802 = ; // BodyType802 | 

try {
    $result = $api_instance->message802($bodyType802);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DestinataireApi->message802: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DestinataireApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DestinataireApi->new();
my $bodyType802 = WWW::OPenAPIClient::Object::BodyType802->new(); # BodyType802 | 

eval {
    my $result = $api_instance->message802(bodyType802 => $bodyType802);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DestinataireApi->message802: $@\n";
}
from __future__ import print_statement
import time
import openapi_client
from openapi_client.rest import ApiException
from pprint import pprint

# Create an instance of the API class
api_instance = openapi_client.DestinataireApi()
bodyType802 =  # BodyType802 |  (optional)

try:
    # Endpoint de déclenchement d'un message 802
    api_response = api_instance.message802(bodyType802=bodyType802)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DestinataireApi->message802: %s\n" % e)
extern crate DestinataireApi;

pub fn main() {
    let bodyType802 = ; // BodyType802

    let mut context = DestinataireApi::Context::default();
    let result = client.message802(bodyType802, &context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Body parameters
Name Description
bodyType802

Responses


message803

Endpoint de déclenchement d'un message 803

Endpoint de déclenchement d'un message 803


/803

Usage and SDK Samples

curl -X POST \
 -H "Accept: text/plain" \
 -H "Content-Type: application/json" \
 "http://localhost/803" \
 -d '{
  "NotificationOfDivertedEADESAD" : {
    "ExciseNotification" : {
      "NotificationDateAndTime" : "2022-01-31T14:05:01",
      "NotificationType" : null,
      "AdministrativeReferenceCode" : "09GKL5BWYERZV82CJV0V1",
      "SequenceNumber" : "98"
    }
  }
}'
import org.openapitools.client.*;
import org.openapitools.client.auth.*;
import org.openapitools.client.model.*;
import org.openapitools.client.api.DestinataireApi;

import java.io.File;
import java.util.*;

public class DestinataireApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        DestinataireApi apiInstance = new DestinataireApi();
        BodyType803 bodyType803 = ; // BodyType803 | 

        try {
            'String' result = apiInstance.message803(bodyType803);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DestinataireApi#message803");
            e.printStackTrace();
        }
    }
}
import org.openapitools.client.api.DestinataireApi;

public class DestinataireApiExample {
    public static void main(String[] args) {
        DestinataireApi apiInstance = new DestinataireApi();
        BodyType803 bodyType803 = ; // BodyType803 | 

        try {
            'String' result = apiInstance.message803(bodyType803);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DestinataireApi#message803");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DestinataireApi *apiInstance = [[DestinataireApi alloc] init];
BodyType803 *bodyType803 = ; //  (optional)

// Endpoint de déclenchement d'un message 803
[apiInstance message803With:bodyType803
              completionHandler: ^('String' output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var ApiFaccediladeGunGamma2VersEdi = require('api_faccedilade_gun__gamma_2_vers_edi');

// Create an instance of the API class
var api = new ApiFaccediladeGunGamma2VersEdi.DestinataireApi()
var opts = {
  'bodyType803':  // {BodyType803} 
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.message803(opts, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class message803Example
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new DestinataireApi();
            var bodyType803 = new BodyType803(); // BodyType803 |  (optional) 

            try {
                // Endpoint de déclenchement d'un message 803
                'String' result = apiInstance.message803(bodyType803);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DestinataireApi.message803: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DestinataireApi();
$bodyType803 = ; // BodyType803 | 

try {
    $result = $api_instance->message803($bodyType803);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DestinataireApi->message803: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DestinataireApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DestinataireApi->new();
my $bodyType803 = WWW::OPenAPIClient::Object::BodyType803->new(); # BodyType803 | 

eval {
    my $result = $api_instance->message803(bodyType803 => $bodyType803);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DestinataireApi->message803: $@\n";
}
from __future__ import print_statement
import time
import openapi_client
from openapi_client.rest import ApiException
from pprint import pprint

# Create an instance of the API class
api_instance = openapi_client.DestinataireApi()
bodyType803 =  # BodyType803 |  (optional)

try:
    # Endpoint de déclenchement d'un message 803
    api_response = api_instance.message803(bodyType803=bodyType803)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DestinataireApi->message803: %s\n" % e)
extern crate DestinataireApi;

pub fn main() {
    let bodyType803 = ; // BodyType803

    let mut context = DestinataireApi::Context::default();
    let result = client.message803(bodyType803, &context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Body parameters
Name Description
bodyType803

Responses


message807

Endpoint de déclenchement d'un message 807

Endpoint de déclenchement d'un message 807


/807

Usage and SDK Samples

curl -X POST \
 -H "Accept: text/plain" \
 -H "Content-Type: application/json" \
 "http://localhost/807" \
 -d '{
  "InterruptionOfMovement" : {
    "ReferenceControlReport" : [ {
      "ControlReportReference" : "YLTBMoad04szv2L5"
    }, {
      "ControlReportReference" : "YLTBMoad04szv2L5"
    }, {
      "ControlReportReference" : "YLTBMoad04szv2L5"
    }, {
      "ControlReportReference" : "YLTBMoad04szv2L5"
    }, {
      "ControlReportReference" : "YLTBMoad04szv2L5"
    } ],
    "Attributes" : {
      "DateAndTimeOfIssuance" : "2022-01-31T14:05:01",
      "__language" : "tg",
      "ComplementaryInformation" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "ReasonForInterruptionCode" : "33",
      "AdministrativeReferenceCode" : "09GKL5BWYERZV82CJV0V1",
      "ReferenceNumberOfExciseOffice" : "BWgnQuPY",
      "ExciseOfficerIdentification" : "azertyui"
    },
    "ReferenceEventReport" : [ {
      "EventReportNumber" : "YLTBMoad04szv2L5"
    }, {
      "EventReportNumber" : "YLTBMoad04szv2L5"
    }, {
      "EventReportNumber" : "YLTBMoad04szv2L5"
    }, {
      "EventReportNumber" : "YLTBMoad04szv2L5"
    }, {
      "EventReportNumber" : "YLTBMoad04szv2L5"
    } ]
  }
}'
import org.openapitools.client.*;
import org.openapitools.client.auth.*;
import org.openapitools.client.model.*;
import org.openapitools.client.api.DestinataireApi;

import java.io.File;
import java.util.*;

public class DestinataireApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        DestinataireApi apiInstance = new DestinataireApi();
        BodyType807 bodyType807 = ; // BodyType807 | 

        try {
            'String' result = apiInstance.message807(bodyType807);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DestinataireApi#message807");
            e.printStackTrace();
        }
    }
}
import org.openapitools.client.api.DestinataireApi;

public class DestinataireApiExample {
    public static void main(String[] args) {
        DestinataireApi apiInstance = new DestinataireApi();
        BodyType807 bodyType807 = ; // BodyType807 | 

        try {
            'String' result = apiInstance.message807(bodyType807);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DestinataireApi#message807");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DestinataireApi *apiInstance = [[DestinataireApi alloc] init];
BodyType807 *bodyType807 = ; //  (optional)

// Endpoint de déclenchement d'un message 807
[apiInstance message807With:bodyType807
              completionHandler: ^('String' output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var ApiFaccediladeGunGamma2VersEdi = require('api_faccedilade_gun__gamma_2_vers_edi');

// Create an instance of the API class
var api = new ApiFaccediladeGunGamma2VersEdi.DestinataireApi()
var opts = {
  'bodyType807':  // {BodyType807} 
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.message807(opts, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class message807Example
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new DestinataireApi();
            var bodyType807 = new BodyType807(); // BodyType807 |  (optional) 

            try {
                // Endpoint de déclenchement d'un message 807
                'String' result = apiInstance.message807(bodyType807);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DestinataireApi.message807: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DestinataireApi();
$bodyType807 = ; // BodyType807 | 

try {
    $result = $api_instance->message807($bodyType807);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DestinataireApi->message807: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DestinataireApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DestinataireApi->new();
my $bodyType807 = WWW::OPenAPIClient::Object::BodyType807->new(); # BodyType807 | 

eval {
    my $result = $api_instance->message807(bodyType807 => $bodyType807);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DestinataireApi->message807: $@\n";
}
from __future__ import print_statement
import time
import openapi_client
from openapi_client.rest import ApiException
from pprint import pprint

# Create an instance of the API class
api_instance = openapi_client.DestinataireApi()
bodyType807 =  # BodyType807 |  (optional)

try:
    # Endpoint de déclenchement d'un message 807
    api_response = api_instance.message807(bodyType807=bodyType807)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DestinataireApi->message807: %s\n" % e)
extern crate DestinataireApi;

pub fn main() {
    let bodyType807 = ; // BodyType807

    let mut context = DestinataireApi::Context::default();
    let result = client.message807(bodyType807, &context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Body parameters
Name Description
bodyType807

Responses


message810

Endpoint de déclenchement d'un message 810

Endpoint de déclenchement d'un message 810


/810

Usage and SDK Samples

curl -X POST \
 -H "Accept: text/plain" \
 -H "Content-Type: application/json" \
 "http://localhost/810" \
 -d '{
  "CancellationOfEAD" : {
    "Attributes" : {
      "DateAndTimeOfValidationOfCancellation" : "2022-01-31T14:05:01"
    },
    "Cancellation" : {
      "ComplementaryInformation" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "CancellationReasonCode" : "3"
    },
    "ExciseMovementEad" : {
      "AdministrativeReferenceCode" : "09GKL5BWYERZV82CJV0V1"
    }
  }
}'
import org.openapitools.client.*;
import org.openapitools.client.auth.*;
import org.openapitools.client.model.*;
import org.openapitools.client.api.DestinataireApi;

import java.io.File;
import java.util.*;

public class DestinataireApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        DestinataireApi apiInstance = new DestinataireApi();
        String messageId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant du message initial, sa valeur sera égale à celle du corrélé id du message en réponse.
        BodyType810 bodyType810 = ; // BodyType810 | 

        try {
            'String' result = apiInstance.message810(messageId, bodyType810);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DestinataireApi#message810");
            e.printStackTrace();
        }
    }
}
import org.openapitools.client.api.DestinataireApi;

public class DestinataireApiExample {
    public static void main(String[] args) {
        DestinataireApi apiInstance = new DestinataireApi();
        String messageId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant du message initial, sa valeur sera égale à celle du corrélé id du message en réponse.
        BodyType810 bodyType810 = ; // BodyType810 | 

        try {
            'String' result = apiInstance.message810(messageId, bodyType810);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DestinataireApi#message810");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DestinataireApi *apiInstance = [[DestinataireApi alloc] init];
String *messageId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // Identifiant du message initial, sa valeur sera égale à celle du corrélé id du message en réponse. (default to null)
BodyType810 *bodyType810 = ; //  (optional)

// Endpoint de déclenchement d'un message 810
[apiInstance message810With:messageId
    bodyType810:bodyType810
              completionHandler: ^('String' output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var ApiFaccediladeGunGamma2VersEdi = require('api_faccedilade_gun__gamma_2_vers_edi');

// Create an instance of the API class
var api = new ApiFaccediladeGunGamma2VersEdi.DestinataireApi()
var messageId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // {String} Identifiant du message initial, sa valeur sera égale à celle du corrélé id du message en réponse.
var opts = {
  'bodyType810':  // {BodyType810} 
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.message810(messageId, opts, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class message810Example
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new DestinataireApi();
            var messageId = 370b56ea-37e4-497b-9d03-adec0da9cf9b;  // String | Identifiant du message initial, sa valeur sera égale à celle du corrélé id du message en réponse. (default to null)
            var bodyType810 = new BodyType810(); // BodyType810 |  (optional) 

            try {
                // Endpoint de déclenchement d'un message 810
                'String' result = apiInstance.message810(messageId, bodyType810);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DestinataireApi.message810: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DestinataireApi();
$messageId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant du message initial, sa valeur sera égale à celle du corrélé id du message en réponse.
$bodyType810 = ; // BodyType810 | 

try {
    $result = $api_instance->message810($messageId, $bodyType810);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DestinataireApi->message810: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DestinataireApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DestinataireApi->new();
my $messageId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; # String | Identifiant du message initial, sa valeur sera égale à celle du corrélé id du message en réponse.
my $bodyType810 = WWW::OPenAPIClient::Object::BodyType810->new(); # BodyType810 | 

eval {
    my $result = $api_instance->message810(messageId => $messageId, bodyType810 => $bodyType810);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DestinataireApi->message810: $@\n";
}
from __future__ import print_statement
import time
import openapi_client
from openapi_client.rest import ApiException
from pprint import pprint

# Create an instance of the API class
api_instance = openapi_client.DestinataireApi()
messageId = 370b56ea-37e4-497b-9d03-adec0da9cf9b # String | Identifiant du message initial, sa valeur sera égale à celle du corrélé id du message en réponse. (default to null)
bodyType810 =  # BodyType810 |  (optional)

try:
    # Endpoint de déclenchement d'un message 810
    api_response = api_instance.message810(messageId, bodyType810=bodyType810)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DestinataireApi->message810: %s\n" % e)
extern crate DestinataireApi;

pub fn main() {
    let messageId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String
    let bodyType810 = ; // BodyType810

    let mut context = DestinataireApi::Context::default();
    let result = client.message810(messageId, bodyType810, &context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Header parameters
Name Description
messageId*
String
Identifiant du message initial, sa valeur sera égale à celle du corrélé id du message en réponse.
Required
Body parameters
Name Description
bodyType810

Responses


message813

Endpoint de déclenchement d'un message 813

Endpoint de déclenchement d'un message 813


/813

Usage and SDK Samples

curl -X POST \
 -H "Accept: text/plain" \
 -H "Content-Type: application/json" \
 "http://localhost/813" \
 -d '{
  "ChangeOfDestination" : {
    "NewTransporterTrader" : {
      "StreetName" : "azertyuio",
      "__language" : "tg",
      "TraderName" : "edcvfr",
      "StreetNumber" : "abc",
      "City" : "asxx",
      "VatNumber" : "fredc",
      "Postcode" : "#bp5"
    },
    "UpdateEadEsad" : {
      "__language" : "tg",
      "TransportModeCode" : "33",
      "ComplementaryInformation" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "JourneyTime" : "H24",
      "AdministrativeReferenceCode" : "09GKL5BWYERZV82CJV0V1",
      "SequenceNumber" : "98",
      "InvoiceDate" : "2022-01-31T00:00:00.000+00:00",
      "InvoiceNumber" : "azertyui",
      "ChangedTransportArrangement" : null
    },
    "MovementGuarantee" : {
      "GuarantorTrader" : [ {
        "StreetName" : "azertyuio",
        "__language" : "tg",
        "TraderName" : "edcvfr",
        "StreetNumber" : "abc",
        "City" : "asxx",
        "TraderExciseNumber" : "WNYmU9ai8UArd",
        "Postcode" : "#bp5",
        "VatNumber" : "fredc"
      }, {
        "StreetName" : "azertyuio",
        "__language" : "tg",
        "TraderName" : "edcvfr",
        "StreetNumber" : "abc",
        "City" : "asxx",
        "TraderExciseNumber" : "WNYmU9ai8UArd",
        "Postcode" : "#bp5",
        "VatNumber" : "fredc"
      } ],
      "GuarantorTypeCode" : null
    },
    "ChangedDestination" : {
      "DestinationTypeCode" : null,
      "NewConsigneeTrader" : {
        "StreetName" : "azertyuio",
        "__language" : "tg",
        "TraderName" : "edcvfr",
        "Traderid" : "aqwxsz",
        "StreetNumber" : "abc",
        "City" : "asxx",
        "Postcode" : "#bp5"
      },
      "DeliveryPlaceTrader" : {
        "StreetName" : "azertyuio",
        "__language" : "tg",
        "TraderName" : "edcvfr",
        "Traderid" : "aqwxsz",
        "StreetNumber" : "abc",
        "City" : "asxx",
        "Postcode" : "#bp5"
      },
      "DeliveryPlaceCustomsOffice" : {
        "ReferenceNumber" : "BWgnQuPY"
      }
    },
    "TransportDetails" : [ {
      "__language" : "tg",
      "ComplementaryInformation" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "SealInformation" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "TransportUnitCode" : "29",
      "IdentityOfTransportUnits" : "azertyui",
      "CommercialSealIdentification" : "azertyui"
    }, {
      "__language" : "tg",
      "ComplementaryInformation" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "SealInformation" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "TransportUnitCode" : "29",
      "IdentityOfTransportUnits" : "azertyui",
      "CommercialSealIdentification" : "azertyui"
    }, {
      "__language" : "tg",
      "ComplementaryInformation" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "SealInformation" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "TransportUnitCode" : "29",
      "IdentityOfTransportUnits" : "azertyui",
      "CommercialSealIdentification" : "azertyui"
    }, {
      "__language" : "tg",
      "ComplementaryInformation" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "SealInformation" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "TransportUnitCode" : "29",
      "IdentityOfTransportUnits" : "azertyui",
      "CommercialSealIdentification" : "azertyui"
    }, {
      "__language" : "tg",
      "ComplementaryInformation" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "SealInformation" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "TransportUnitCode" : "29",
      "IdentityOfTransportUnits" : "azertyui",
      "CommercialSealIdentification" : "azertyui"
    } ],
    "Attributes" : {
      "DateAndTimeOfValidationOfChangeOfDestination" : "2022-01-31T14:05:01"
    },
    "NewTransportArrangerTrader" : {
      "StreetName" : "azertyuio",
      "__language" : "tg",
      "TraderName" : "edcvfr",
      "StreetNumber" : "abc",
      "City" : "asxx",
      "VatNumber" : "fredc",
      "Postcode" : "#bp5"
    }
  }
}'
import org.openapitools.client.*;
import org.openapitools.client.auth.*;
import org.openapitools.client.model.*;
import org.openapitools.client.api.DestinataireApi;

import java.io.File;
import java.util.*;

public class DestinataireApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        DestinataireApi apiInstance = new DestinataireApi();
        String correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant corrélé au messageId du message initial
        BodyType813 bodyType813 = ; // BodyType813 | 

        try {
            'String' result = apiInstance.message813(correlationId, bodyType813);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DestinataireApi#message813");
            e.printStackTrace();
        }
    }
}
import org.openapitools.client.api.DestinataireApi;

public class DestinataireApiExample {
    public static void main(String[] args) {
        DestinataireApi apiInstance = new DestinataireApi();
        String correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant corrélé au messageId du message initial
        BodyType813 bodyType813 = ; // BodyType813 | 

        try {
            'String' result = apiInstance.message813(correlationId, bodyType813);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DestinataireApi#message813");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DestinataireApi *apiInstance = [[DestinataireApi alloc] init];
String *correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // Identifiant corrélé au messageId du message initial (default to null)
BodyType813 *bodyType813 = ; //  (optional)

// Endpoint de déclenchement d'un message 813
[apiInstance message813With:correlationId
    bodyType813:bodyType813
              completionHandler: ^('String' output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var ApiFaccediladeGunGamma2VersEdi = require('api_faccedilade_gun__gamma_2_vers_edi');

// Create an instance of the API class
var api = new ApiFaccediladeGunGamma2VersEdi.DestinataireApi()
var correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // {String} Identifiant corrélé au messageId du message initial
var opts = {
  'bodyType813':  // {BodyType813} 
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.message813(correlationId, opts, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class message813Example
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new DestinataireApi();
            var correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b;  // String | Identifiant corrélé au messageId du message initial (default to null)
            var bodyType813 = new BodyType813(); // BodyType813 |  (optional) 

            try {
                // Endpoint de déclenchement d'un message 813
                'String' result = apiInstance.message813(correlationId, bodyType813);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DestinataireApi.message813: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DestinataireApi();
$correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant corrélé au messageId du message initial
$bodyType813 = ; // BodyType813 | 

try {
    $result = $api_instance->message813($correlationId, $bodyType813);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DestinataireApi->message813: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DestinataireApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DestinataireApi->new();
my $correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; # String | Identifiant corrélé au messageId du message initial
my $bodyType813 = WWW::OPenAPIClient::Object::BodyType813->new(); # BodyType813 | 

eval {
    my $result = $api_instance->message813(correlationId => $correlationId, bodyType813 => $bodyType813);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DestinataireApi->message813: $@\n";
}
from __future__ import print_statement
import time
import openapi_client
from openapi_client.rest import ApiException
from pprint import pprint

# Create an instance of the API class
api_instance = openapi_client.DestinataireApi()
correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b # String | Identifiant corrélé au messageId du message initial (default to null)
bodyType813 =  # BodyType813 |  (optional)

try:
    # Endpoint de déclenchement d'un message 813
    api_response = api_instance.message813(correlationId, bodyType813=bodyType813)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DestinataireApi->message813: %s\n" % e)
extern crate DestinataireApi;

pub fn main() {
    let correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String
    let bodyType813 = ; // BodyType813

    let mut context = DestinataireApi::Context::default();
    let result = client.message813(correlationId, bodyType813, &context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Header parameters
Name Description
correlationId*
String
Identifiant corrélé au messageId du message initial
Required
Body parameters
Name Description
bodyType813

Responses


message818

Endpoint de déclenchement d'un message 818

Endpoint de déclenchement d'un message 818


/818

Usage and SDK Samples

curl -X POST \
 -H "Accept: text/plain" \
 -H "Content-Type: application/json" \
 "http://localhost/818" \
 -d '{
  "AcceptedOrRejectedReportOfReceiptExport" : {
    "ReportOfReceiptExport" : {
      "ComplementaryInformation" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "DateOfArrivalOfExciseProducts" : "2022-01-31T00:00:00.000+00:00",
      "GlobalConclusionOfReceipt" : null
    },
    "BodyReportOfReceiptExport" : [ {
      "ConsumptionQuantity" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "ObservedShortageOrExcess" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "ExemptQuantity" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "ExciseProductCode" : "@NM1",
      "IndicatorOfShortageOrExcess" : null,
      "BodyRecordUniqueReference" : "553",
      "RefusedQuantity" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "SuspendedQuantity" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "UnsatisfactoryReasonCode" : [ {
        "ComplementaryInformation" : {
          "__language" : "tg",
          "_content_" : "adverty"
        },
        "UnsatisfactoryReasonCode" : "33"
      }, {
        "ComplementaryInformation" : {
          "__language" : "tg",
          "_content_" : "adverty"
        },
        "UnsatisfactoryReasonCode" : "33"
      }, {
        "ComplementaryInformation" : {
          "__language" : "tg",
          "_content_" : "adverty"
        },
        "UnsatisfactoryReasonCode" : "33"
      }, {
        "ComplementaryInformation" : {
          "__language" : "tg",
          "_content_" : "adverty"
        },
        "UnsatisfactoryReasonCode" : "33"
      }, {
        "ComplementaryInformation" : {
          "__language" : "tg",
          "_content_" : "adverty"
        },
        "UnsatisfactoryReasonCode" : "33"
      } ]
    }, {
      "ConsumptionQuantity" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "ObservedShortageOrExcess" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "ExemptQuantity" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "ExciseProductCode" : "@NM1",
      "IndicatorOfShortageOrExcess" : null,
      "BodyRecordUniqueReference" : "553",
      "RefusedQuantity" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "SuspendedQuantity" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "UnsatisfactoryReasonCode" : [ {
        "ComplementaryInformation" : {
          "__language" : "tg",
          "_content_" : "adverty"
        },
        "UnsatisfactoryReasonCode" : "33"
      }, {
        "ComplementaryInformation" : {
          "__language" : "tg",
          "_content_" : "adverty"
        },
        "UnsatisfactoryReasonCode" : "33"
      }, {
        "ComplementaryInformation" : {
          "__language" : "tg",
          "_content_" : "adverty"
        },
        "UnsatisfactoryReasonCode" : "33"
      }, {
        "ComplementaryInformation" : {
          "__language" : "tg",
          "_content_" : "adverty"
        },
        "UnsatisfactoryReasonCode" : "33"
      }, {
        "ComplementaryInformation" : {
          "__language" : "tg",
          "_content_" : "adverty"
        },
        "UnsatisfactoryReasonCode" : "33"
      } ]
    }, {
      "ConsumptionQuantity" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "ObservedShortageOrExcess" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "ExemptQuantity" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "ExciseProductCode" : "@NM1",
      "IndicatorOfShortageOrExcess" : null,
      "BodyRecordUniqueReference" : "553",
      "RefusedQuantity" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "SuspendedQuantity" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "UnsatisfactoryReasonCode" : [ {
        "ComplementaryInformation" : {
          "__language" : "tg",
          "_content_" : "adverty"
        },
        "UnsatisfactoryReasonCode" : "33"
      }, {
        "ComplementaryInformation" : {
          "__language" : "tg",
          "_content_" : "adverty"
        },
        "UnsatisfactoryReasonCode" : "33"
      }, {
        "ComplementaryInformation" : {
          "__language" : "tg",
          "_content_" : "adverty"
        },
        "UnsatisfactoryReasonCode" : "33"
      }, {
        "ComplementaryInformation" : {
          "__language" : "tg",
          "_content_" : "adverty"
        },
        "UnsatisfactoryReasonCode" : "33"
      }, {
        "ComplementaryInformation" : {
          "__language" : "tg",
          "_content_" : "adverty"
        },
        "UnsatisfactoryReasonCode" : "33"
      } ]
    }, {
      "ConsumptionQuantity" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "ObservedShortageOrExcess" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "ExemptQuantity" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "ExciseProductCode" : "@NM1",
      "IndicatorOfShortageOrExcess" : null,
      "BodyRecordUniqueReference" : "553",
      "RefusedQuantity" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "SuspendedQuantity" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "UnsatisfactoryReasonCode" : [ {
        "ComplementaryInformation" : {
          "__language" : "tg",
          "_content_" : "adverty"
        },
        "UnsatisfactoryReasonCode" : "33"
      }, {
        "ComplementaryInformation" : {
          "__language" : "tg",
          "_content_" : "adverty"
        },
        "UnsatisfactoryReasonCode" : "33"
      }, {
        "ComplementaryInformation" : {
          "__language" : "tg",
          "_content_" : "adverty"
        },
        "UnsatisfactoryReasonCode" : "33"
      }, {
        "ComplementaryInformation" : {
          "__language" : "tg",
          "_content_" : "adverty"
        },
        "UnsatisfactoryReasonCode" : "33"
      }, {
        "ComplementaryInformation" : {
          "__language" : "tg",
          "_content_" : "adverty"
        },
        "UnsatisfactoryReasonCode" : "33"
      } ]
    }, {
      "ConsumptionQuantity" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "ObservedShortageOrExcess" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "ExemptQuantity" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "ExciseProductCode" : "@NM1",
      "IndicatorOfShortageOrExcess" : null,
      "BodyRecordUniqueReference" : "553",
      "RefusedQuantity" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "SuspendedQuantity" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "UnsatisfactoryReasonCode" : [ {
        "ComplementaryInformation" : {
          "__language" : "tg",
          "_content_" : "adverty"
        },
        "UnsatisfactoryReasonCode" : "33"
      }, {
        "ComplementaryInformation" : {
          "__language" : "tg",
          "_content_" : "adverty"
        },
        "UnsatisfactoryReasonCode" : "33"
      }, {
        "ComplementaryInformation" : {
          "__language" : "tg",
          "_content_" : "adverty"
        },
        "UnsatisfactoryReasonCode" : "33"
      }, {
        "ComplementaryInformation" : {
          "__language" : "tg",
          "_content_" : "adverty"
        },
        "UnsatisfactoryReasonCode" : "33"
      }, {
        "ComplementaryInformation" : {
          "__language" : "tg",
          "_content_" : "adverty"
        },
        "UnsatisfactoryReasonCode" : "33"
      } ]
    } ],
    "ExciseMovement" : {
      "AdministrativeReferenceCode" : "09GKL5BWYERZV82CJV0V1",
      "SequenceNumber" : "98"
    },
    "DeliveryPlaceTrader" : {
      "StreetName" : "azertyuio",
      "__language" : "tg",
      "TraderName" : "edcvfr",
      "Traderid" : "aqwxsz",
      "StreetNumber" : "abc",
      "City" : "asxx",
      "Postcode" : "#bp5"
    },
    "ConsigneeTrader" : {
      "StreetName" : "azertyuio",
      "__language" : "tg",
      "TraderName" : "edcvfr",
      "ConsigneeTraderEAs" : [ {
        "TraderExciseNumber" : "WNYmU9ai8UArd"
      }, {
        "TraderExciseNumber" : "WNYmU9ai8UArd"
      }, {
        "TraderExciseNumber" : "WNYmU9ai8UArd"
      }, {
        "TraderExciseNumber" : "WNYmU9ai8UArd"
      }, {
        "TraderExciseNumber" : "WNYmU9ai8UArd"
      } ],
      "Traderid" : "aqwxsz",
      "StreetNumber" : "abc",
      "City" : "asxx",
      "Postcode" : "#bp5"
    },
    "Attributes" : {
      "Status" : "0C1",
      "DateAndTimeOfValidationOfReportOfReceiptExport" : "2022-01-31T14:05:01"
    }
  }
}'
import org.openapitools.client.*;
import org.openapitools.client.auth.*;
import org.openapitools.client.model.*;
import org.openapitools.client.api.DestinataireApi;

import java.io.File;
import java.util.*;

public class DestinataireApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        DestinataireApi apiInstance = new DestinataireApi();
        String correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant corrélé au messageId du message initial
        BodyType818 bodyType818 = ; // BodyType818 | 

        try {
            'String' result = apiInstance.message818(correlationId, bodyType818);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DestinataireApi#message818");
            e.printStackTrace();
        }
    }
}
import org.openapitools.client.api.DestinataireApi;

public class DestinataireApiExample {
    public static void main(String[] args) {
        DestinataireApi apiInstance = new DestinataireApi();
        String correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant corrélé au messageId du message initial
        BodyType818 bodyType818 = ; // BodyType818 | 

        try {
            'String' result = apiInstance.message818(correlationId, bodyType818);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DestinataireApi#message818");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DestinataireApi *apiInstance = [[DestinataireApi alloc] init];
String *correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // Identifiant corrélé au messageId du message initial (default to null)
BodyType818 *bodyType818 = ; //  (optional)

// Endpoint de déclenchement d'un message 818
[apiInstance message818With:correlationId
    bodyType818:bodyType818
              completionHandler: ^('String' output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var ApiFaccediladeGunGamma2VersEdi = require('api_faccedilade_gun__gamma_2_vers_edi');

// Create an instance of the API class
var api = new ApiFaccediladeGunGamma2VersEdi.DestinataireApi()
var correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // {String} Identifiant corrélé au messageId du message initial
var opts = {
  'bodyType818':  // {BodyType818} 
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.message818(correlationId, opts, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class message818Example
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new DestinataireApi();
            var correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b;  // String | Identifiant corrélé au messageId du message initial (default to null)
            var bodyType818 = new BodyType818(); // BodyType818 |  (optional) 

            try {
                // Endpoint de déclenchement d'un message 818
                'String' result = apiInstance.message818(correlationId, bodyType818);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DestinataireApi.message818: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DestinataireApi();
$correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant corrélé au messageId du message initial
$bodyType818 = ; // BodyType818 | 

try {
    $result = $api_instance->message818($correlationId, $bodyType818);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DestinataireApi->message818: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DestinataireApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DestinataireApi->new();
my $correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; # String | Identifiant corrélé au messageId du message initial
my $bodyType818 = WWW::OPenAPIClient::Object::BodyType818->new(); # BodyType818 | 

eval {
    my $result = $api_instance->message818(correlationId => $correlationId, bodyType818 => $bodyType818);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DestinataireApi->message818: $@\n";
}
from __future__ import print_statement
import time
import openapi_client
from openapi_client.rest import ApiException
from pprint import pprint

# Create an instance of the API class
api_instance = openapi_client.DestinataireApi()
correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b # String | Identifiant corrélé au messageId du message initial (default to null)
bodyType818 =  # BodyType818 |  (optional)

try:
    # Endpoint de déclenchement d'un message 818
    api_response = api_instance.message818(correlationId, bodyType818=bodyType818)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DestinataireApi->message818: %s\n" % e)
extern crate DestinataireApi;

pub fn main() {
    let correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String
    let bodyType818 = ; // BodyType818

    let mut context = DestinataireApi::Context::default();
    let result = client.message818(correlationId, bodyType818, &context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Header parameters
Name Description
correlationId*
String
Identifiant corrélé au messageId du message initial
Required
Body parameters
Name Description
bodyType818

Responses


message819

Endpoint de déclenchement d'un message 819

Endpoint de déclenchement d'un message 819


/819

Usage and SDK Samples

curl -X POST \
 -H "Accept: text/plain" \
 -H "Content-Type: application/json" \
 "http://localhost/819" \
 -d '{
  "AlertOrRejectionOfEADESAD" : {
    "AlertOrRejectionOfEadEsadReason" : [ {
      "ComplementaryInformation" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "AlertOrRejectionOfEadEsadReasonCode" : "33"
    }, {
      "ComplementaryInformation" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "AlertOrRejectionOfEadEsadReasonCode" : "33"
    }, {
      "ComplementaryInformation" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "AlertOrRejectionOfEadEsadReasonCode" : "33"
    }, {
      "ComplementaryInformation" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "AlertOrRejectionOfEadEsadReasonCode" : "33"
    }, {
      "ComplementaryInformation" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "AlertOrRejectionOfEadEsadReasonCode" : "33"
    } ],
    "ExciseMovement" : {
      "AdministrativeReferenceCode" : "09GKL5BWYERZV82CJV0V1",
      "SequenceNumber" : "98"
    },
    "ConsigneeTrader" : {
      "StreetName" : "azertyuio",
      "__language" : "tg",
      "TraderName" : "edcvfr",
      "Traderid" : "aqwxsz",
      "StreetNumber" : "abc",
      "City" : "asxx",
      "Postcode" : "#bp5"
    },
    "Attributes" : {
      "DateAndTimeOfValidationOfAlertRejection" : "2022-01-31T14:05:01"
    },
    "AlertOrRejection" : {
      "DateOfAlertOrRejection" : "2022-01-31T00:00:00.000+00:00",
      "EadEsadRejectedFlag" : null
    }
  }
}'
import org.openapitools.client.*;
import org.openapitools.client.auth.*;
import org.openapitools.client.model.*;
import org.openapitools.client.api.DestinataireApi;

import java.io.File;
import java.util.*;

public class DestinataireApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        DestinataireApi apiInstance = new DestinataireApi();
        String correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant corrélé au messageId du message initial
        BodyType819 bodyType819 = ; // BodyType819 | 

        try {
            'String' result = apiInstance.message819(correlationId, bodyType819);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DestinataireApi#message819");
            e.printStackTrace();
        }
    }
}
import org.openapitools.client.api.DestinataireApi;

public class DestinataireApiExample {
    public static void main(String[] args) {
        DestinataireApi apiInstance = new DestinataireApi();
        String correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant corrélé au messageId du message initial
        BodyType819 bodyType819 = ; // BodyType819 | 

        try {
            'String' result = apiInstance.message819(correlationId, bodyType819);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DestinataireApi#message819");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DestinataireApi *apiInstance = [[DestinataireApi alloc] init];
String *correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // Identifiant corrélé au messageId du message initial (default to null)
BodyType819 *bodyType819 = ; //  (optional)

// Endpoint de déclenchement d'un message 819
[apiInstance message819With:correlationId
    bodyType819:bodyType819
              completionHandler: ^('String' output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var ApiFaccediladeGunGamma2VersEdi = require('api_faccedilade_gun__gamma_2_vers_edi');

// Create an instance of the API class
var api = new ApiFaccediladeGunGamma2VersEdi.DestinataireApi()
var correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // {String} Identifiant corrélé au messageId du message initial
var opts = {
  'bodyType819':  // {BodyType819} 
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.message819(correlationId, opts, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class message819Example
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new DestinataireApi();
            var correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b;  // String | Identifiant corrélé au messageId du message initial (default to null)
            var bodyType819 = new BodyType819(); // BodyType819 |  (optional) 

            try {
                // Endpoint de déclenchement d'un message 819
                'String' result = apiInstance.message819(correlationId, bodyType819);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DestinataireApi.message819: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DestinataireApi();
$correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant corrélé au messageId du message initial
$bodyType819 = ; // BodyType819 | 

try {
    $result = $api_instance->message819($correlationId, $bodyType819);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DestinataireApi->message819: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DestinataireApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DestinataireApi->new();
my $correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; # String | Identifiant corrélé au messageId du message initial
my $bodyType819 = WWW::OPenAPIClient::Object::BodyType819->new(); # BodyType819 | 

eval {
    my $result = $api_instance->message819(correlationId => $correlationId, bodyType819 => $bodyType819);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DestinataireApi->message819: $@\n";
}
from __future__ import print_statement
import time
import openapi_client
from openapi_client.rest import ApiException
from pprint import pprint

# Create an instance of the API class
api_instance = openapi_client.DestinataireApi()
correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b # String | Identifiant corrélé au messageId du message initial (default to null)
bodyType819 =  # BodyType819 |  (optional)

try:
    # Endpoint de déclenchement d'un message 819
    api_response = api_instance.message819(correlationId, bodyType819=bodyType819)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DestinataireApi->message819: %s\n" % e)
extern crate DestinataireApi;

pub fn main() {
    let correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String
    let bodyType819 = ; // BodyType819

    let mut context = DestinataireApi::Context::default();
    let result = client.message819(correlationId, bodyType819, &context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Header parameters
Name Description
correlationId*
String
Identifiant corrélé au messageId du message initial
Required
Body parameters
Name Description
bodyType819

Responses


message837

Endpoint de déclenchement d'un message 837

Endpoint de déclenchement d'un message 837


/837

Usage and SDK Samples

curl -X POST \
 -H "Accept: text/plain" \
 -H "Content-Type: application/json" \
 "http://localhost/837" \
 -d '{
  "ExplanationOnDelayForDelivery" : {
    "ExciseMovement" : {
      "AdministrativeReferenceCode" : "09GKL5BWYERZV82CJV0V1",
      "SequenceNumber" : "98"
    },
    "Attributes" : {
      "MessageRole" : null,
      "ComplementaryInformation" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "TypeDeclarant" : null,
      "ExplanationCode" : "33"
    }
  }
}'
import org.openapitools.client.*;
import org.openapitools.client.auth.*;
import org.openapitools.client.model.*;
import org.openapitools.client.api.DestinataireApi;

import java.io.File;
import java.util.*;

public class DestinataireApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        DestinataireApi apiInstance = new DestinataireApi();
        String correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant corrélé au messageId du message initial
        BodyType837 bodyType837 = ; // BodyType837 | 

        try {
            'String' result = apiInstance.message837(correlationId, bodyType837);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DestinataireApi#message837");
            e.printStackTrace();
        }
    }
}
import org.openapitools.client.api.DestinataireApi;

public class DestinataireApiExample {
    public static void main(String[] args) {
        DestinataireApi apiInstance = new DestinataireApi();
        String correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant corrélé au messageId du message initial
        BodyType837 bodyType837 = ; // BodyType837 | 

        try {
            'String' result = apiInstance.message837(correlationId, bodyType837);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DestinataireApi#message837");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DestinataireApi *apiInstance = [[DestinataireApi alloc] init];
String *correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // Identifiant corrélé au messageId du message initial (default to null)
BodyType837 *bodyType837 = ; //  (optional)

// Endpoint de déclenchement d'un message 837
[apiInstance message837With:correlationId
    bodyType837:bodyType837
              completionHandler: ^('String' output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var ApiFaccediladeGunGamma2VersEdi = require('api_faccedilade_gun__gamma_2_vers_edi');

// Create an instance of the API class
var api = new ApiFaccediladeGunGamma2VersEdi.DestinataireApi()
var correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // {String} Identifiant corrélé au messageId du message initial
var opts = {
  'bodyType837':  // {BodyType837} 
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.message837(correlationId, opts, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class message837Example
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new DestinataireApi();
            var correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b;  // String | Identifiant corrélé au messageId du message initial (default to null)
            var bodyType837 = new BodyType837(); // BodyType837 |  (optional) 

            try {
                // Endpoint de déclenchement d'un message 837
                'String' result = apiInstance.message837(correlationId, bodyType837);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DestinataireApi.message837: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DestinataireApi();
$correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant corrélé au messageId du message initial
$bodyType837 = ; // BodyType837 | 

try {
    $result = $api_instance->message837($correlationId, $bodyType837);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DestinataireApi->message837: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DestinataireApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DestinataireApi->new();
my $correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; # String | Identifiant corrélé au messageId du message initial
my $bodyType837 = WWW::OPenAPIClient::Object::BodyType837->new(); # BodyType837 | 

eval {
    my $result = $api_instance->message837(correlationId => $correlationId, bodyType837 => $bodyType837);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DestinataireApi->message837: $@\n";
}
from __future__ import print_statement
import time
import openapi_client
from openapi_client.rest import ApiException
from pprint import pprint

# Create an instance of the API class
api_instance = openapi_client.DestinataireApi()
correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b # String | Identifiant corrélé au messageId du message initial (default to null)
bodyType837 =  # BodyType837 |  (optional)

try:
    # Endpoint de déclenchement d'un message 837
    api_response = api_instance.message837(correlationId, bodyType837=bodyType837)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DestinataireApi->message837: %s\n" % e)
extern crate DestinataireApi;

pub fn main() {
    let correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String
    let bodyType837 = ; // BodyType837

    let mut context = DestinataireApi::Context::default();
    let result = client.message837(correlationId, bodyType837, &context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Header parameters
Name Description
correlationId*
String
Identifiant corrélé au messageId du message initial
Required
Body parameters
Name Description
bodyType837

Responses


message840

Endpoint de déclenchement d'un message 840

Endpoint de déclenchement d'un message 840


/840

Usage and SDK Samples

curl -X POST \
 -H "Accept: text/plain" \
 -H "Content-Type: application/json" \
 "http://localhost/840" \
 -d '{
  "EventReportEnvelope" : {
    "NewTransporterTrader" : {
      "StreetName" : "azertyuio",
      "__language" : "tg",
      "TraderName" : "edcvfr",
      "StreetNumber" : "abc",
      "City" : "asxx",
      "VatNumber" : "fredc",
      "Postcode" : "#bp5"
    },
    "TransportDetails" : [ {
      "ComplementaryInformation" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "SealInformation" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "TransportUnitCode" : "29",
      "IdentityOfTransportUnits" : "azertyui",
      "CommercialSealIdentification" : "azertyui"
    }, {
      "ComplementaryInformation" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "SealInformation" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "TransportUnitCode" : "29",
      "IdentityOfTransportUnits" : "azertyui",
      "CommercialSealIdentification" : "azertyui"
    }, {
      "ComplementaryInformation" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "SealInformation" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "TransportUnitCode" : "29",
      "IdentityOfTransportUnits" : "azertyui",
      "CommercialSealIdentification" : "azertyui"
    }, {
      "ComplementaryInformation" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "SealInformation" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "TransportUnitCode" : "29",
      "IdentityOfTransportUnits" : "azertyui",
      "CommercialSealIdentification" : "azertyui"
    }, {
      "ComplementaryInformation" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "SealInformation" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "TransportUnitCode" : "29",
      "IdentityOfTransportUnits" : "azertyui",
      "CommercialSealIdentification" : "azertyui"
    } ],
    "Attributes" : {
      "DateAndTimeOfValidationOfEventReport" : "2022-01-31T14:05:01"
    },
    "HeaderEventReport" : {
      "EventReportNumber" : "YLTBMoad04szv2L5",
      "MemberStateOfEvent" : "TG",
      "MsOfSubmissionEventReportReference" : "azertyui",
      "AdministrativeReferenceCode" : "09GKL5BWYERZV82CJV0V1",
      "SequenceNumber" : "98",
      "ReferenceNumberOfExciseOffice" : "BWgnQuPY"
    },
    "EvidenceOfEvent" : [ {
      "EvidenceTypeCode" : "33",
      "ReferenceOfEvidence" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "EvidenceTypeComplement" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "ImageOfEvidence" : "ImageOfEvidence",
      "IssuingAuthority" : {
        "__language" : "tg",
        "_content_" : "azertyui"
      }
    }, {
      "EvidenceTypeCode" : "33",
      "ReferenceOfEvidence" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "EvidenceTypeComplement" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "ImageOfEvidence" : "ImageOfEvidence",
      "IssuingAuthority" : {
        "__language" : "tg",
        "_content_" : "azertyui"
      }
    }, {
      "EvidenceTypeCode" : "33",
      "ReferenceOfEvidence" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "EvidenceTypeComplement" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "ImageOfEvidence" : "ImageOfEvidence",
      "IssuingAuthority" : {
        "__language" : "tg",
        "_content_" : "azertyui"
      }
    }, {
      "EvidenceTypeCode" : "33",
      "ReferenceOfEvidence" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "EvidenceTypeComplement" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "ImageOfEvidence" : "ImageOfEvidence",
      "IssuingAuthority" : {
        "__language" : "tg",
        "_content_" : "azertyui"
      }
    }, {
      "EvidenceTypeCode" : "33",
      "ReferenceOfEvidence" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "EvidenceTypeComplement" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "ImageOfEvidence" : "ImageOfEvidence",
      "IssuingAuthority" : {
        "__language" : "tg",
        "_content_" : "azertyui"
      }
    } ],
    "BodyEventReport" : [ {
      "EventTypeCode" : "33",
      "AssociatedInformation" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "ObservedShortageOrExcess" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "IndicatorOfShortageOrExcess" : null,
      "BodyRecordUniqueReference" : "553"
    }, {
      "EventTypeCode" : "33",
      "AssociatedInformation" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "ObservedShortageOrExcess" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "IndicatorOfShortageOrExcess" : null,
      "BodyRecordUniqueReference" : "553"
    }, {
      "EventTypeCode" : "33",
      "AssociatedInformation" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "ObservedShortageOrExcess" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "IndicatorOfShortageOrExcess" : null,
      "BodyRecordUniqueReference" : "553"
    }, {
      "EventTypeCode" : "33",
      "AssociatedInformation" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "ObservedShortageOrExcess" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "IndicatorOfShortageOrExcess" : null,
      "BodyRecordUniqueReference" : "553"
    }, {
      "EventTypeCode" : "33",
      "AssociatedInformation" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "ObservedShortageOrExcess" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "IndicatorOfShortageOrExcess" : null,
      "BodyRecordUniqueReference" : "553"
    } ],
    "EventReport" : {
      "PlaceOfEvent" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "SubmittingPersonComplement" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "Comments" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "ExciseOfficerIdentification" : "azertyui",
      "SubmittingPerson" : "azertyui",
      "DateOfEvent" : "2022-01-31T00:00:00.000+00:00",
      "SubmittingPersonCode" : "33",
      "ChangedTransportArrangement" : null
    },
    "NewTransportArrangerTrader" : {
      "StreetName" : "azertyuio",
      "__language" : "tg",
      "TraderName" : "edcvfr",
      "StreetNumber" : "abc",
      "City" : "asxx",
      "VatNumber" : "fredc",
      "Postcode" : "#bp5"
    }
  }
}'
import org.openapitools.client.*;
import org.openapitools.client.auth.*;
import org.openapitools.client.model.*;
import org.openapitools.client.api.DestinataireApi;

import java.io.File;
import java.util.*;

public class DestinataireApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        DestinataireApi apiInstance = new DestinataireApi();
        BodyType840 bodyType840 = ; // BodyType840 | 

        try {
            'String' result = apiInstance.message840(bodyType840);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DestinataireApi#message840");
            e.printStackTrace();
        }
    }
}
import org.openapitools.client.api.DestinataireApi;

public class DestinataireApiExample {
    public static void main(String[] args) {
        DestinataireApi apiInstance = new DestinataireApi();
        BodyType840 bodyType840 = ; // BodyType840 | 

        try {
            'String' result = apiInstance.message840(bodyType840);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DestinataireApi#message840");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DestinataireApi *apiInstance = [[DestinataireApi alloc] init];
BodyType840 *bodyType840 = ; //  (optional)

// Endpoint de déclenchement d'un message 840
[apiInstance message840With:bodyType840
              completionHandler: ^('String' output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var ApiFaccediladeGunGamma2VersEdi = require('api_faccedilade_gun__gamma_2_vers_edi');

// Create an instance of the API class
var api = new ApiFaccediladeGunGamma2VersEdi.DestinataireApi()
var opts = {
  'bodyType840':  // {BodyType840} 
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.message840(opts, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class message840Example
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new DestinataireApi();
            var bodyType840 = new BodyType840(); // BodyType840 |  (optional) 

            try {
                // Endpoint de déclenchement d'un message 840
                'String' result = apiInstance.message840(bodyType840);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DestinataireApi.message840: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DestinataireApi();
$bodyType840 = ; // BodyType840 | 

try {
    $result = $api_instance->message840($bodyType840);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DestinataireApi->message840: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DestinataireApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DestinataireApi->new();
my $bodyType840 = WWW::OPenAPIClient::Object::BodyType840->new(); # BodyType840 | 

eval {
    my $result = $api_instance->message840(bodyType840 => $bodyType840);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DestinataireApi->message840: $@\n";
}
from __future__ import print_statement
import time
import openapi_client
from openapi_client.rest import ApiException
from pprint import pprint

# Create an instance of the API class
api_instance = openapi_client.DestinataireApi()
bodyType840 =  # BodyType840 |  (optional)

try:
    # Endpoint de déclenchement d'un message 840
    api_response = api_instance.message840(bodyType840=bodyType840)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DestinataireApi->message840: %s\n" % e)
extern crate DestinataireApi;

pub fn main() {
    let bodyType840 = ; // BodyType840

    let mut context = DestinataireApi::Context::default();
    let result = client.message840(bodyType840, &context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Body parameters
Name Description
bodyType840

Responses


message871

Endpoint de déclenchement d'un message 871

Endpoint de déclenchement d'un message 871


/871

Usage and SDK Samples

curl -X POST \
 -H "Accept: text/plain" \
 -H "Content-Type: application/json" \
 "http://localhost/871" \
 -d '{
  "ExplanationOnReasonForShortage" : {
    "ExciseMovement" : {
      "AdministrativeReferenceCode" : "09GKL5BWYERZV82CJV0V1",
      "SequenceNumber" : "98"
    },
    "ConsignorTrader" : {
      "StreetName" : "azertyuio",
      "__language" : "tg",
      "TraderName" : "edcvfr",
      "StreetNumber" : "abc",
      "City" : "asxx",
      "TraderExciseNumber" : "WNYmU9ai8UArd",
      "Postcode" : "#bp5"
    },
    "Analysis" : {
      "DateOfAnalysis" : "2022-01-31T00:00:00.000+00:00",
      "GlobalExplanation" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      }
    },
    "ConsigneeTrader" : {
      "StreetName" : "azertyuio",
      "__language" : "tg",
      "TraderName" : "edcvfr",
      "Traderid" : "aqwxsz",
      "StreetNumber" : "abc",
      "City" : "asxx",
      "Postcode" : "#bp5"
    },
    "BodyAnalysis" : [ {
      "Explanation" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "ExciseProductCode" : "@NM1",
      "BodyRecordUniqueReference" : "553",
      "ActualQuantity" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144"
    }, {
      "Explanation" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "ExciseProductCode" : "@NM1",
      "BodyRecordUniqueReference" : "553",
      "ActualQuantity" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144"
    }, {
      "Explanation" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "ExciseProductCode" : "@NM1",
      "BodyRecordUniqueReference" : "553",
      "ActualQuantity" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144"
    }, {
      "Explanation" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "ExciseProductCode" : "@NM1",
      "BodyRecordUniqueReference" : "553",
      "ActualQuantity" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144"
    }, {
      "Explanation" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "ExciseProductCode" : "@NM1",
      "BodyRecordUniqueReference" : "553",
      "ActualQuantity" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144"
    } ],
    "Attributes" : {
      "TypeDeclarant" : null,
      "DateAndTimeOfValidationOfExplanationOnShortage" : "2022-01-31T14:05:01"
    }
  }
}'
import org.openapitools.client.*;
import org.openapitools.client.auth.*;
import org.openapitools.client.model.*;
import org.openapitools.client.api.DestinataireApi;

import java.io.File;
import java.util.*;

public class DestinataireApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        DestinataireApi apiInstance = new DestinataireApi();
        String correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant corrélé au messageId du message initial
        BodyType871 bodyType871 = ; // BodyType871 | 

        try {
            'String' result = apiInstance.message871(correlationId, bodyType871);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DestinataireApi#message871");
            e.printStackTrace();
        }
    }
}
import org.openapitools.client.api.DestinataireApi;

public class DestinataireApiExample {
    public static void main(String[] args) {
        DestinataireApi apiInstance = new DestinataireApi();
        String correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant corrélé au messageId du message initial
        BodyType871 bodyType871 = ; // BodyType871 | 

        try {
            'String' result = apiInstance.message871(correlationId, bodyType871);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DestinataireApi#message871");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DestinataireApi *apiInstance = [[DestinataireApi alloc] init];
String *correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // Identifiant corrélé au messageId du message initial (default to null)
BodyType871 *bodyType871 = ; //  (optional)

// Endpoint de déclenchement d'un message 871
[apiInstance message871With:correlationId
    bodyType871:bodyType871
              completionHandler: ^('String' output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var ApiFaccediladeGunGamma2VersEdi = require('api_faccedilade_gun__gamma_2_vers_edi');

// Create an instance of the API class
var api = new ApiFaccediladeGunGamma2VersEdi.DestinataireApi()
var correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // {String} Identifiant corrélé au messageId du message initial
var opts = {
  'bodyType871':  // {BodyType871} 
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.message871(correlationId, opts, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class message871Example
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new DestinataireApi();
            var correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b;  // String | Identifiant corrélé au messageId du message initial (default to null)
            var bodyType871 = new BodyType871(); // BodyType871 |  (optional) 

            try {
                // Endpoint de déclenchement d'un message 871
                'String' result = apiInstance.message871(correlationId, bodyType871);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DestinataireApi.message871: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DestinataireApi();
$correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant corrélé au messageId du message initial
$bodyType871 = ; // BodyType871 | 

try {
    $result = $api_instance->message871($correlationId, $bodyType871);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DestinataireApi->message871: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DestinataireApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DestinataireApi->new();
my $correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; # String | Identifiant corrélé au messageId du message initial
my $bodyType871 = WWW::OPenAPIClient::Object::BodyType871->new(); # BodyType871 | 

eval {
    my $result = $api_instance->message871(correlationId => $correlationId, bodyType871 => $bodyType871);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DestinataireApi->message871: $@\n";
}
from __future__ import print_statement
import time
import openapi_client
from openapi_client.rest import ApiException
from pprint import pprint

# Create an instance of the API class
api_instance = openapi_client.DestinataireApi()
correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b # String | Identifiant corrélé au messageId du message initial (default to null)
bodyType871 =  # BodyType871 |  (optional)

try:
    # Endpoint de déclenchement d'un message 871
    api_response = api_instance.message871(correlationId, bodyType871=bodyType871)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DestinataireApi->message871: %s\n" % e)
extern crate DestinataireApi;

pub fn main() {
    let correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String
    let bodyType871 = ; // BodyType871

    let mut context = DestinataireApi::Context::default();
    let result = client.message871(correlationId, bodyType871, &context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Header parameters
Name Description
correlationId*
String
Identifiant corrélé au messageId du message initial
Required
Body parameters
Name Description
bodyType871

Responses


message881

Endpoint de déclenchement d'un message 881

Endpoint de déclenchement d'un message 881


/881

Usage and SDK Samples

curl -X POST \
 -H "Accept: text/plain" \
 -H "Content-Type: application/json" \
 "http://localhost/881" \
 -d '{
  "ManualClosureResponse" : {
    "Attributes" : {
      "ComplementaryInformation" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "ManualClosureRequestReasonCodeComplement" : {
        "__language" : "tg",
        "_content_" : "azerty"
      },
      "ManualClosureRejectionReasonCode" : "3",
      "DateOfArrivalOfExciseProducts" : "2022-01-31T00:00:00.000+00:00",
      "GlobalConclusionOfReceipt" : null,
      "AdministrativeReferenceCode" : "09GKL5BWYERZV82CJV0V1",
      "SequenceNumber" : "98",
      "ManualClosureRequestReasonCode" : "3",
      "ManualClosureRejectionComplement" : {
        "__language" : "tg",
        "_content_" : "azerty"
      },
      "ManualClosureRequestAccepted" : null
    },
    "SupportingDocuments" : [ {
      "SupportingDocumentType" : "86u",
      "ImageOfDocument" : "ImageOfDocument",
      "SupportingDocumentDescription" : {
        "__language" : "tg",
        "_content_" : "azerty"
      },
      "ReferenceOfSupportingDocument" : {
        "__language" : "tg",
        "_content_" : "azerty"
      }
    }, {
      "SupportingDocumentType" : "86u",
      "ImageOfDocument" : "ImageOfDocument",
      "SupportingDocumentDescription" : {
        "__language" : "tg",
        "_content_" : "azerty"
      },
      "ReferenceOfSupportingDocument" : {
        "__language" : "tg",
        "_content_" : "azerty"
      }
    }, {
      "SupportingDocumentType" : "86u",
      "ImageOfDocument" : "ImageOfDocument",
      "SupportingDocumentDescription" : {
        "__language" : "tg",
        "_content_" : "azerty"
      },
      "ReferenceOfSupportingDocument" : {
        "__language" : "tg",
        "_content_" : "azerty"
      }
    }, {
      "SupportingDocumentType" : "86u",
      "ImageOfDocument" : "ImageOfDocument",
      "SupportingDocumentDescription" : {
        "__language" : "tg",
        "_content_" : "azerty"
      },
      "ReferenceOfSupportingDocument" : {
        "__language" : "tg",
        "_content_" : "azerty"
      }
    }, {
      "SupportingDocumentType" : "86u",
      "ImageOfDocument" : "ImageOfDocument",
      "SupportingDocumentDescription" : {
        "__language" : "tg",
        "_content_" : "azerty"
      },
      "ReferenceOfSupportingDocument" : {
        "__language" : "tg",
        "_content_" : "azerty"
      }
    } ],
    "BodyManualClosure" : [ {
      "ComplementaryInformation" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "ObservedShortageOrExcess" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "ExciseProductCode" : "@NM1",
      "IndicatorOfShortageOrExcess" : null,
      "BodyRecordUniqueReference" : "553",
      "RefusedQuantity" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144"
    }, {
      "ComplementaryInformation" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "ObservedShortageOrExcess" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "ExciseProductCode" : "@NM1",
      "IndicatorOfShortageOrExcess" : null,
      "BodyRecordUniqueReference" : "553",
      "RefusedQuantity" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144"
    }, {
      "ComplementaryInformation" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "ObservedShortageOrExcess" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "ExciseProductCode" : "@NM1",
      "IndicatorOfShortageOrExcess" : null,
      "BodyRecordUniqueReference" : "553",
      "RefusedQuantity" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144"
    }, {
      "ComplementaryInformation" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "ObservedShortageOrExcess" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "ExciseProductCode" : "@NM1",
      "IndicatorOfShortageOrExcess" : null,
      "BodyRecordUniqueReference" : "553",
      "RefusedQuantity" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144"
    }, {
      "ComplementaryInformation" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "ObservedShortageOrExcess" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "ExciseProductCode" : "@NM1",
      "IndicatorOfShortageOrExcess" : null,
      "BodyRecordUniqueReference" : "553",
      "RefusedQuantity" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144"
    } ]
  }
}'
import org.openapitools.client.*;
import org.openapitools.client.auth.*;
import org.openapitools.client.model.*;
import org.openapitools.client.api.DestinataireApi;

import java.io.File;
import java.util.*;

public class DestinataireApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        DestinataireApi apiInstance = new DestinataireApi();
        BodyType881 bodyType881 = ; // BodyType881 | 

        try {
            'String' result = apiInstance.message881(bodyType881);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DestinataireApi#message881");
            e.printStackTrace();
        }
    }
}
import org.openapitools.client.api.DestinataireApi;

public class DestinataireApiExample {
    public static void main(String[] args) {
        DestinataireApi apiInstance = new DestinataireApi();
        BodyType881 bodyType881 = ; // BodyType881 | 

        try {
            'String' result = apiInstance.message881(bodyType881);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DestinataireApi#message881");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DestinataireApi *apiInstance = [[DestinataireApi alloc] init];
BodyType881 *bodyType881 = ; //  (optional)

// Endpoint de déclenchement d'un message 881
[apiInstance message881With:bodyType881
              completionHandler: ^('String' output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var ApiFaccediladeGunGamma2VersEdi = require('api_faccedilade_gun__gamma_2_vers_edi');

// Create an instance of the API class
var api = new ApiFaccediladeGunGamma2VersEdi.DestinataireApi()
var opts = {
  'bodyType881':  // {BodyType881} 
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.message881(opts, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class message881Example
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new DestinataireApi();
            var bodyType881 = new BodyType881(); // BodyType881 |  (optional) 

            try {
                // Endpoint de déclenchement d'un message 881
                'String' result = apiInstance.message881(bodyType881);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DestinataireApi.message881: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DestinataireApi();
$bodyType881 = ; // BodyType881 | 

try {
    $result = $api_instance->message881($bodyType881);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DestinataireApi->message881: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DestinataireApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DestinataireApi->new();
my $bodyType881 = WWW::OPenAPIClient::Object::BodyType881->new(); # BodyType881 | 

eval {
    my $result = $api_instance->message881(bodyType881 => $bodyType881);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DestinataireApi->message881: $@\n";
}
from __future__ import print_statement
import time
import openapi_client
from openapi_client.rest import ApiException
from pprint import pprint

# Create an instance of the API class
api_instance = openapi_client.DestinataireApi()
bodyType881 =  # BodyType881 |  (optional)

try:
    # Endpoint de déclenchement d'un message 881
    api_response = api_instance.message881(bodyType881=bodyType881)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DestinataireApi->message881: %s\n" % e)
extern crate DestinataireApi;

pub fn main() {
    let bodyType881 = ; // BodyType881

    let mut context = DestinataireApi::Context::default();
    let result = client.message881(bodyType881, &context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Body parameters
Name Description
bodyType881

Responses


message906

Endpoint de déclenchement d'un message 906

Endpoint de déclenchement d'un message 906


/906

Usage and SDK Samples

curl -X POST \
 -H "Accept: text/plain" \
 -H "Content-Type: application/json" \
 "http://localhost/906" \
 -d '{
  "FunctionalNegativeAcknowledgement" : {
    "FunctionalError" : [ {
      "ErrorLocation" : "qwertyazerty",
      "ErrorType" : null,
      "OriginalAttributeValue" : "qwertyazerty",
      "ErrorReason" : "qwertyazerty"
    }, {
      "ErrorLocation" : "qwertyazerty",
      "ErrorType" : null,
      "OriginalAttributeValue" : "qwertyazerty",
      "ErrorReason" : "qwertyazerty"
    }, {
      "ErrorLocation" : "qwertyazerty",
      "ErrorType" : null,
      "OriginalAttributeValue" : "qwertyazerty",
      "ErrorReason" : "qwertyazerty"
    }, {
      "ErrorLocation" : "qwertyazerty",
      "ErrorType" : null,
      "OriginalAttributeValue" : "qwertyazerty",
      "ErrorReason" : "qwertyazerty"
    }, {
      "ErrorLocation" : "qwertyazerty",
      "ErrorType" : null,
      "OriginalAttributeValue" : "qwertyazerty",
      "ErrorReason" : "qwertyazerty"
    } ],
    "Attributes" : {
      "AdministrativeReferenceCode" : "~00J]fkDK1(VGkj>TeJ6",
      "SequenceNumber" : "98"
    },
    "DateRefus" : {
      "RejectionDate" : "2000-01-23T04:56:07.000+00:00"
    }
  }
}'
import org.openapitools.client.*;
import org.openapitools.client.auth.*;
import org.openapitools.client.model.*;
import org.openapitools.client.api.DestinataireApi;

import java.io.File;
import java.util.*;

public class DestinataireApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        DestinataireApi apiInstance = new DestinataireApi();
        String correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant corrélé au messageId du message initial
        BodyType906 bodyType906 = ; // BodyType906 | 

        try {
            'String' result = apiInstance.message906(correlationId, bodyType906);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DestinataireApi#message906");
            e.printStackTrace();
        }
    }
}
import org.openapitools.client.api.DestinataireApi;

public class DestinataireApiExample {
    public static void main(String[] args) {
        DestinataireApi apiInstance = new DestinataireApi();
        String correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant corrélé au messageId du message initial
        BodyType906 bodyType906 = ; // BodyType906 | 

        try {
            'String' result = apiInstance.message906(correlationId, bodyType906);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DestinataireApi#message906");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DestinataireApi *apiInstance = [[DestinataireApi alloc] init];
String *correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // Identifiant corrélé au messageId du message initial (default to null)
BodyType906 *bodyType906 = ; //  (optional)

// Endpoint de déclenchement d'un message 906
[apiInstance message906With:correlationId
    bodyType906:bodyType906
              completionHandler: ^('String' output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var ApiFaccediladeGunGamma2VersEdi = require('api_faccedilade_gun__gamma_2_vers_edi');

// Create an instance of the API class
var api = new ApiFaccediladeGunGamma2VersEdi.DestinataireApi()
var correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // {String} Identifiant corrélé au messageId du message initial
var opts = {
  'bodyType906':  // {BodyType906} 
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.message906(correlationId, opts, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class message906Example
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new DestinataireApi();
            var correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b;  // String | Identifiant corrélé au messageId du message initial (default to null)
            var bodyType906 = new BodyType906(); // BodyType906 |  (optional) 

            try {
                // Endpoint de déclenchement d'un message 906
                'String' result = apiInstance.message906(correlationId, bodyType906);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DestinataireApi.message906: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DestinataireApi();
$correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant corrélé au messageId du message initial
$bodyType906 = ; // BodyType906 | 

try {
    $result = $api_instance->message906($correlationId, $bodyType906);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DestinataireApi->message906: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DestinataireApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DestinataireApi->new();
my $correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; # String | Identifiant corrélé au messageId du message initial
my $bodyType906 = WWW::OPenAPIClient::Object::BodyType906->new(); # BodyType906 | 

eval {
    my $result = $api_instance->message906(correlationId => $correlationId, bodyType906 => $bodyType906);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DestinataireApi->message906: $@\n";
}
from __future__ import print_statement
import time
import openapi_client
from openapi_client.rest import ApiException
from pprint import pprint

# Create an instance of the API class
api_instance = openapi_client.DestinataireApi()
correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b # String | Identifiant corrélé au messageId du message initial (default to null)
bodyType906 =  # BodyType906 |  (optional)

try:
    # Endpoint de déclenchement d'un message 906
    api_response = api_instance.message906(correlationId, bodyType906=bodyType906)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DestinataireApi->message906: %s\n" % e)
extern crate DestinataireApi;

pub fn main() {
    let correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String
    let bodyType906 = ; // BodyType906

    let mut context = DestinataireApi::Context::default();
    let result = client.message906(correlationId, bodyType906, &context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Header parameters
Name Description
correlationId*
String
Identifiant corrélé au messageId du message initial
Required
Body parameters
Name Description
bodyType906

Responses


message917

Endpoint de déclenchement d'un message 917

Endpoint de déclenchement d'un message 917


/917

Usage and SDK Samples

curl -X POST \
 -H "Accept: text/plain" \
 -H "Content-Type: application/json" \
 "http://localhost/917" \
 -d '{
  "XmlNegativeAcknowledgement" : {
    "Attributes" : {
      "AdministrativeReferenceCode" : "09GKL5BWYERZV82CJV0V1",
      "SequenceNumber" : "98"
    },
    "XmlError" : [ {
      "ErrorLocation" : "qwertyazerty",
      "ErrorReason" : "qwertyazerty"
    }, {
      "ErrorLocation" : "qwertyazerty",
      "ErrorReason" : "qwertyazerty"
    }, {
      "ErrorLocation" : "qwertyazerty",
      "ErrorReason" : "qwertyazerty"
    }, {
      "ErrorLocation" : "qwertyazerty",
      "ErrorReason" : "qwertyazerty"
    }, {
      "ErrorLocation" : "qwertyazerty",
      "ErrorReason" : "qwertyazerty"
    } ]
  }
}'
import org.openapitools.client.*;
import org.openapitools.client.auth.*;
import org.openapitools.client.model.*;
import org.openapitools.client.api.DestinataireApi;

import java.io.File;
import java.util.*;

public class DestinataireApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        DestinataireApi apiInstance = new DestinataireApi();
        String correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant corrélé au messageId du message initial
        BodyType917 bodyType917 = ; // BodyType917 | 

        try {
            'String' result = apiInstance.message917(correlationId, bodyType917);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DestinataireApi#message917");
            e.printStackTrace();
        }
    }
}
import org.openapitools.client.api.DestinataireApi;

public class DestinataireApiExample {
    public static void main(String[] args) {
        DestinataireApi apiInstance = new DestinataireApi();
        String correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant corrélé au messageId du message initial
        BodyType917 bodyType917 = ; // BodyType917 | 

        try {
            'String' result = apiInstance.message917(correlationId, bodyType917);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DestinataireApi#message917");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DestinataireApi *apiInstance = [[DestinataireApi alloc] init];
String *correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // Identifiant corrélé au messageId du message initial (default to null)
BodyType917 *bodyType917 = ; //  (optional)

// Endpoint de déclenchement d'un message 917
[apiInstance message917With:correlationId
    bodyType917:bodyType917
              completionHandler: ^('String' output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var ApiFaccediladeGunGamma2VersEdi = require('api_faccedilade_gun__gamma_2_vers_edi');

// Create an instance of the API class
var api = new ApiFaccediladeGunGamma2VersEdi.DestinataireApi()
var correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // {String} Identifiant corrélé au messageId du message initial
var opts = {
  'bodyType917':  // {BodyType917} 
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.message917(correlationId, opts, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class message917Example
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new DestinataireApi();
            var correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b;  // String | Identifiant corrélé au messageId du message initial (default to null)
            var bodyType917 = new BodyType917(); // BodyType917 |  (optional) 

            try {
                // Endpoint de déclenchement d'un message 917
                'String' result = apiInstance.message917(correlationId, bodyType917);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DestinataireApi.message917: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DestinataireApi();
$correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant corrélé au messageId du message initial
$bodyType917 = ; // BodyType917 | 

try {
    $result = $api_instance->message917($correlationId, $bodyType917);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DestinataireApi->message917: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DestinataireApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DestinataireApi->new();
my $correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; # String | Identifiant corrélé au messageId du message initial
my $bodyType917 = WWW::OPenAPIClient::Object::BodyType917->new(); # BodyType917 | 

eval {
    my $result = $api_instance->message917(correlationId => $correlationId, bodyType917 => $bodyType917);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DestinataireApi->message917: $@\n";
}
from __future__ import print_statement
import time
import openapi_client
from openapi_client.rest import ApiException
from pprint import pprint

# Create an instance of the API class
api_instance = openapi_client.DestinataireApi()
correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b # String | Identifiant corrélé au messageId du message initial (default to null)
bodyType917 =  # BodyType917 |  (optional)

try:
    # Endpoint de déclenchement d'un message 917
    api_response = api_instance.message917(correlationId, bodyType917=bodyType917)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DestinataireApi->message917: %s\n" % e)
extern crate DestinataireApi;

pub fn main() {
    let correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String
    let bodyType917 = ; // BodyType917

    let mut context = DestinataireApi::Context::default();
    let result = client.message917(correlationId, bodyType917, &context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Header parameters
Name Description
correlationId*
String
Identifiant corrélé au messageId du message initial
Required
Body parameters
Name Description
bodyType917

Responses


Expediteur

message1005

Endpoint de déclenchement d'un message 1005

Endpoint de déclenchement d'un message 1005


/1005

Usage and SDK Samples

curl -X POST \
 -H "Accept: text/plain" \
 -H "Content-Type: application/json" \
 "http://localhost/1005" \
 -d '{
  "SubmittedDraftOfEad1005" : {
    "Ead" : {
      "LocalReferenceNumber" : "~00J]fkDK1(VGkj>TeJ6"
    },
    "ExciseMovementEad" : {
      "AdministrativeReferenceCode" : "09GKL5BWYERZV82CJV0V1",
      "DateAndTimeOfValidationOfEadEsad" : "2022-01-31T14:05:01"
    }
  }
}'
import org.openapitools.client.*;
import org.openapitools.client.auth.*;
import org.openapitools.client.model.*;
import org.openapitools.client.api.ExpediteurApi;

import java.io.File;
import java.util.*;

public class ExpediteurApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        ExpediteurApi apiInstance = new ExpediteurApi();
        String messageId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant du message initial, sa valeur sera égale à celle du corrélé id du message en réponse.
        BodyType1005 bodyType1005 = ; // BodyType1005 | 

        try {
            'String' result = apiInstance.message1005(messageId, bodyType1005);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ExpediteurApi#message1005");
            e.printStackTrace();
        }
    }
}
import org.openapitools.client.api.ExpediteurApi;

public class ExpediteurApiExample {
    public static void main(String[] args) {
        ExpediteurApi apiInstance = new ExpediteurApi();
        String messageId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant du message initial, sa valeur sera égale à celle du corrélé id du message en réponse.
        BodyType1005 bodyType1005 = ; // BodyType1005 | 

        try {
            'String' result = apiInstance.message1005(messageId, bodyType1005);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ExpediteurApi#message1005");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
ExpediteurApi *apiInstance = [[ExpediteurApi alloc] init];
String *messageId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // Identifiant du message initial, sa valeur sera égale à celle du corrélé id du message en réponse. (default to null)
BodyType1005 *bodyType1005 = ; //  (optional)

// Endpoint de déclenchement d'un message 1005
[apiInstance message1005With:messageId
    bodyType1005:bodyType1005
              completionHandler: ^('String' output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var ApiFaccediladeGunGamma2VersEdi = require('api_faccedilade_gun__gamma_2_vers_edi');

// Create an instance of the API class
var api = new ApiFaccediladeGunGamma2VersEdi.ExpediteurApi()
var messageId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // {String} Identifiant du message initial, sa valeur sera égale à celle du corrélé id du message en réponse.
var opts = {
  'bodyType1005':  // {BodyType1005} 
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.message1005(messageId, opts, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class message1005Example
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new ExpediteurApi();
            var messageId = 370b56ea-37e4-497b-9d03-adec0da9cf9b;  // String | Identifiant du message initial, sa valeur sera égale à celle du corrélé id du message en réponse. (default to null)
            var bodyType1005 = new BodyType1005(); // BodyType1005 |  (optional) 

            try {
                // Endpoint de déclenchement d'un message 1005
                'String' result = apiInstance.message1005(messageId, bodyType1005);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling ExpediteurApi.message1005: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\ExpediteurApi();
$messageId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant du message initial, sa valeur sera égale à celle du corrélé id du message en réponse.
$bodyType1005 = ; // BodyType1005 | 

try {
    $result = $api_instance->message1005($messageId, $bodyType1005);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ExpediteurApi->message1005: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::ExpediteurApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::ExpediteurApi->new();
my $messageId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; # String | Identifiant du message initial, sa valeur sera égale à celle du corrélé id du message en réponse.
my $bodyType1005 = WWW::OPenAPIClient::Object::BodyType1005->new(); # BodyType1005 | 

eval {
    my $result = $api_instance->message1005(messageId => $messageId, bodyType1005 => $bodyType1005);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ExpediteurApi->message1005: $@\n";
}
from __future__ import print_statement
import time
import openapi_client
from openapi_client.rest import ApiException
from pprint import pprint

# Create an instance of the API class
api_instance = openapi_client.ExpediteurApi()
messageId = 370b56ea-37e4-497b-9d03-adec0da9cf9b # String | Identifiant du message initial, sa valeur sera égale à celle du corrélé id du message en réponse. (default to null)
bodyType1005 =  # BodyType1005 |  (optional)

try:
    # Endpoint de déclenchement d'un message 1005
    api_response = api_instance.message1005(messageId, bodyType1005=bodyType1005)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ExpediteurApi->message1005: %s\n" % e)
extern crate ExpediteurApi;

pub fn main() {
    let messageId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String
    let bodyType1005 = ; // BodyType1005

    let mut context = ExpediteurApi::Context::default();
    let result = client.message1005(messageId, bodyType1005, &context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Header parameters
Name Description
messageId*
String
Identifiant du message initial, sa valeur sera égale à celle du corrélé id du message en réponse.
Required
Body parameters
Name Description
bodyType1005

Responses


message3000

Endpoint de déclenchement d'un message 3000

Endpoint de déclenchement d'un message 3000


/3000

Usage and SDK Samples

curl -X POST \
 -H "Accept: text/plain" \
 -H "Content-Type: application/json" \
 "http://localhost/3000" \
 -d '{
  "AcceptedOrRejectedReportOfReceiptExportConsignor" : {
    "ReportOfReceiptExport" : {
      "ComplementaryInformation" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "DateOfArrivalOfExciseProducts" : "2022-01-31T00:00:00.000+00:00",
      "GlobalConclusionOfReceipt" : null
    },
    "BodyReportOfReceiptExport" : [ {
      "ObservedShortageOrExcess" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "ExciseProductCode" : "@NM1",
      "IndicatorOfShortageOrExcess" : null,
      "BodyRecordUniqueReference" : "553",
      "RefusedQuantity" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "UnsatisfactoryReason" : [ {
        "__language" : "tg",
        "ComplementaryInformation" : {
          "__language" : "tg",
          "_content_" : "adverty"
        },
        "UnsatisfactoryReasonCode" : "33"
      }, {
        "__language" : "tg",
        "ComplementaryInformation" : {
          "__language" : "tg",
          "_content_" : "adverty"
        },
        "UnsatisfactoryReasonCode" : "33"
      }, {
        "__language" : "tg",
        "ComplementaryInformation" : {
          "__language" : "tg",
          "_content_" : "adverty"
        },
        "UnsatisfactoryReasonCode" : "33"
      }, {
        "__language" : "tg",
        "ComplementaryInformation" : {
          "__language" : "tg",
          "_content_" : "adverty"
        },
        "UnsatisfactoryReasonCode" : "33"
      }, {
        "__language" : "tg",
        "ComplementaryInformation" : {
          "__language" : "tg",
          "_content_" : "adverty"
        },
        "UnsatisfactoryReasonCode" : "33"
      } ]
    }, {
      "ObservedShortageOrExcess" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "ExciseProductCode" : "@NM1",
      "IndicatorOfShortageOrExcess" : null,
      "BodyRecordUniqueReference" : "553",
      "RefusedQuantity" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "UnsatisfactoryReason" : [ {
        "__language" : "tg",
        "ComplementaryInformation" : {
          "__language" : "tg",
          "_content_" : "adverty"
        },
        "UnsatisfactoryReasonCode" : "33"
      }, {
        "__language" : "tg",
        "ComplementaryInformation" : {
          "__language" : "tg",
          "_content_" : "adverty"
        },
        "UnsatisfactoryReasonCode" : "33"
      }, {
        "__language" : "tg",
        "ComplementaryInformation" : {
          "__language" : "tg",
          "_content_" : "adverty"
        },
        "UnsatisfactoryReasonCode" : "33"
      }, {
        "__language" : "tg",
        "ComplementaryInformation" : {
          "__language" : "tg",
          "_content_" : "adverty"
        },
        "UnsatisfactoryReasonCode" : "33"
      }, {
        "__language" : "tg",
        "ComplementaryInformation" : {
          "__language" : "tg",
          "_content_" : "adverty"
        },
        "UnsatisfactoryReasonCode" : "33"
      } ]
    }, {
      "ObservedShortageOrExcess" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "ExciseProductCode" : "@NM1",
      "IndicatorOfShortageOrExcess" : null,
      "BodyRecordUniqueReference" : "553",
      "RefusedQuantity" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "UnsatisfactoryReason" : [ {
        "__language" : "tg",
        "ComplementaryInformation" : {
          "__language" : "tg",
          "_content_" : "adverty"
        },
        "UnsatisfactoryReasonCode" : "33"
      }, {
        "__language" : "tg",
        "ComplementaryInformation" : {
          "__language" : "tg",
          "_content_" : "adverty"
        },
        "UnsatisfactoryReasonCode" : "33"
      }, {
        "__language" : "tg",
        "ComplementaryInformation" : {
          "__language" : "tg",
          "_content_" : "adverty"
        },
        "UnsatisfactoryReasonCode" : "33"
      }, {
        "__language" : "tg",
        "ComplementaryInformation" : {
          "__language" : "tg",
          "_content_" : "adverty"
        },
        "UnsatisfactoryReasonCode" : "33"
      }, {
        "__language" : "tg",
        "ComplementaryInformation" : {
          "__language" : "tg",
          "_content_" : "adverty"
        },
        "UnsatisfactoryReasonCode" : "33"
      } ]
    }, {
      "ObservedShortageOrExcess" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "ExciseProductCode" : "@NM1",
      "IndicatorOfShortageOrExcess" : null,
      "BodyRecordUniqueReference" : "553",
      "RefusedQuantity" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "UnsatisfactoryReason" : [ {
        "__language" : "tg",
        "ComplementaryInformation" : {
          "__language" : "tg",
          "_content_" : "adverty"
        },
        "UnsatisfactoryReasonCode" : "33"
      }, {
        "__language" : "tg",
        "ComplementaryInformation" : {
          "__language" : "tg",
          "_content_" : "adverty"
        },
        "UnsatisfactoryReasonCode" : "33"
      }, {
        "__language" : "tg",
        "ComplementaryInformation" : {
          "__language" : "tg",
          "_content_" : "adverty"
        },
        "UnsatisfactoryReasonCode" : "33"
      }, {
        "__language" : "tg",
        "ComplementaryInformation" : {
          "__language" : "tg",
          "_content_" : "adverty"
        },
        "UnsatisfactoryReasonCode" : "33"
      }, {
        "__language" : "tg",
        "ComplementaryInformation" : {
          "__language" : "tg",
          "_content_" : "adverty"
        },
        "UnsatisfactoryReasonCode" : "33"
      } ]
    }, {
      "ObservedShortageOrExcess" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "ExciseProductCode" : "@NM1",
      "IndicatorOfShortageOrExcess" : null,
      "BodyRecordUniqueReference" : "553",
      "RefusedQuantity" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "UnsatisfactoryReason" : [ {
        "__language" : "tg",
        "ComplementaryInformation" : {
          "__language" : "tg",
          "_content_" : "adverty"
        },
        "UnsatisfactoryReasonCode" : "33"
      }, {
        "__language" : "tg",
        "ComplementaryInformation" : {
          "__language" : "tg",
          "_content_" : "adverty"
        },
        "UnsatisfactoryReasonCode" : "33"
      }, {
        "__language" : "tg",
        "ComplementaryInformation" : {
          "__language" : "tg",
          "_content_" : "adverty"
        },
        "UnsatisfactoryReasonCode" : "33"
      }, {
        "__language" : "tg",
        "ComplementaryInformation" : {
          "__language" : "tg",
          "_content_" : "adverty"
        },
        "UnsatisfactoryReasonCode" : "33"
      }, {
        "__language" : "tg",
        "ComplementaryInformation" : {
          "__language" : "tg",
          "_content_" : "adverty"
        },
        "UnsatisfactoryReasonCode" : "33"
      } ]
    } ],
    "DeliveryPlaceTrader" : {
      "StreetName" : "azertyuio",
      "__language" : "tg",
      "TraderName" : "edcvfr",
      "Traderid" : "aqwxsz",
      "StreetNumber" : "abc",
      "City" : "asxx",
      "Postcode" : "#bp5"
    },
    "ConsignorTrader" : {
      "TraderExciseNumber" : "TraderExciseNumber"
    },
    "ConsigneeTrader" : {
      "StreetName" : "azertyuio",
      "__language" : "tg",
      "TraderName" : "edcvfr",
      "Traderid" : "aqwxsz",
      "StreetNumber" : "abc",
      "City" : "asxx",
      "Postcode" : "#bp5"
    },
    "Attributes" : {
      "DateAndTimeOfValidationOfReportOfReceiptExport" : "2022-01-31T14:05:01"
    },
    "ExciseMovementEad" : {
      "AdministrativeReferenceCode" : "09GKL5BWYERZV82CJV0V1",
      "SequenceNumber" : "98"
    },
    "DestinationCustomsOffice" : {
      "ReferenceNumber" : "BWgnQuPY"
    }
  }
}'
import org.openapitools.client.*;
import org.openapitools.client.auth.*;
import org.openapitools.client.model.*;
import org.openapitools.client.api.ExpediteurApi;

import java.io.File;
import java.util.*;

public class ExpediteurApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        ExpediteurApi apiInstance = new ExpediteurApi();
        String correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant corrélé au messageId du message initial
        BodyType3000 bodyType3000 = ; // BodyType3000 | 

        try {
            'String' result = apiInstance.message3000(correlationId, bodyType3000);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ExpediteurApi#message3000");
            e.printStackTrace();
        }
    }
}
import org.openapitools.client.api.ExpediteurApi;

public class ExpediteurApiExample {
    public static void main(String[] args) {
        ExpediteurApi apiInstance = new ExpediteurApi();
        String correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant corrélé au messageId du message initial
        BodyType3000 bodyType3000 = ; // BodyType3000 | 

        try {
            'String' result = apiInstance.message3000(correlationId, bodyType3000);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ExpediteurApi#message3000");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
ExpediteurApi *apiInstance = [[ExpediteurApi alloc] init];
String *correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // Identifiant corrélé au messageId du message initial (default to null)
BodyType3000 *bodyType3000 = ; //  (optional)

// Endpoint de déclenchement d'un message 3000
[apiInstance message3000With:correlationId
    bodyType3000:bodyType3000
              completionHandler: ^('String' output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var ApiFaccediladeGunGamma2VersEdi = require('api_faccedilade_gun__gamma_2_vers_edi');

// Create an instance of the API class
var api = new ApiFaccediladeGunGamma2VersEdi.ExpediteurApi()
var correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // {String} Identifiant corrélé au messageId du message initial
var opts = {
  'bodyType3000':  // {BodyType3000} 
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.message3000(correlationId, opts, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class message3000Example
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new ExpediteurApi();
            var correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b;  // String | Identifiant corrélé au messageId du message initial (default to null)
            var bodyType3000 = new BodyType3000(); // BodyType3000 |  (optional) 

            try {
                // Endpoint de déclenchement d'un message 3000
                'String' result = apiInstance.message3000(correlationId, bodyType3000);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling ExpediteurApi.message3000: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\ExpediteurApi();
$correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant corrélé au messageId du message initial
$bodyType3000 = ; // BodyType3000 | 

try {
    $result = $api_instance->message3000($correlationId, $bodyType3000);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ExpediteurApi->message3000: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::ExpediteurApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::ExpediteurApi->new();
my $correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; # String | Identifiant corrélé au messageId du message initial
my $bodyType3000 = WWW::OPenAPIClient::Object::BodyType3000->new(); # BodyType3000 | 

eval {
    my $result = $api_instance->message3000(correlationId => $correlationId, bodyType3000 => $bodyType3000);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ExpediteurApi->message3000: $@\n";
}
from __future__ import print_statement
import time
import openapi_client
from openapi_client.rest import ApiException
from pprint import pprint

# Create an instance of the API class
api_instance = openapi_client.ExpediteurApi()
correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b # String | Identifiant corrélé au messageId du message initial (default to null)
bodyType3000 =  # BodyType3000 |  (optional)

try:
    # Endpoint de déclenchement d'un message 3000
    api_response = api_instance.message3000(correlationId, bodyType3000=bodyType3000)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ExpediteurApi->message3000: %s\n" % e)
extern crate ExpediteurApi;

pub fn main() {
    let correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String
    let bodyType3000 = ; // BodyType3000

    let mut context = ExpediteurApi::Context::default();
    let result = client.message3000(correlationId, bodyType3000, &context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Header parameters
Name Description
correlationId*
String
Identifiant corrélé au messageId du message initial
Required
Body parameters
Name Description
bodyType3000

Responses


message801

Endpoint de déclenchement d'un message 801

Endpoint de déclenchement d'un message 801


/801

Usage and SDK Samples

curl -X POST \
 -H "Accept: text/plain" \
 -H "Content-Type: application/json" \
 "http://localhost/801" \
 -d '{
  "EADESADContainer" : {
    "DocumentCertificate" : [ {
      "__language" : "tg",
      "DocumentDescription" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "DocumentType" : "86u",
      "ReferenceOfDocument" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "DocumentReference" : "azertyui"
    }, {
      "__language" : "tg",
      "DocumentDescription" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "DocumentType" : "86u",
      "ReferenceOfDocument" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "DocumentReference" : "azertyui"
    }, {
      "__language" : "tg",
      "DocumentDescription" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "DocumentType" : "86u",
      "ReferenceOfDocument" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "DocumentReference" : "azertyui"
    }, {
      "__language" : "tg",
      "DocumentDescription" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "DocumentType" : "86u",
      "ReferenceOfDocument" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "DocumentReference" : "azertyui"
    }, {
      "__language" : "tg",
      "DocumentDescription" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "DocumentType" : "86u",
      "ReferenceOfDocument" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "DocumentReference" : "azertyui"
    } ],
    "MovementGuarantee" : {
      "GuarantorTrader" : [ {
        "StreetName" : "azertyuio",
        "__language" : "tg",
        "TraderName" : "edcvfr",
        "StreetNumber" : "abc",
        "City" : "asxx",
        "TraderExciseNumber" : "WNYmU9ai8UArd",
        "VatNumber" : "fredc",
        "Postcode" : "#bp5"
      }, {
        "StreetName" : "azertyuio",
        "__language" : "tg",
        "TraderName" : "edcvfr",
        "StreetNumber" : "abc",
        "City" : "asxx",
        "TraderExciseNumber" : "WNYmU9ai8UArd",
        "VatNumber" : "fredc",
        "Postcode" : "#bp5"
      } ],
      "GuarantorTypeCode" : null
    },
    "ExciseMovement" : {
      "AdministrativeReferenceCode" : "09GKL5BWYERZV82CJV0V1",
      "DateAndTimeOfValidationOfEadEsad" : "2022-01-31T14:05:01"
    },
    "ConsigneeTrader" : {
      "StreetName" : "azertyuio",
      "__language" : "tg",
      "TraderName" : "edcvfr",
      "EoriNumber" : "FR0123456789",
      "Traderid" : "aqwxsz",
      "StreetNumber" : "abc",
      "City" : "asxx",
      "Postcode" : "#bp5"
    },
    "PlaceOfDispatchTrader" : {
      "StreetName" : "azertyuio",
      "__language" : "tg",
      "TraderName" : "edcvfr",
      "ReferenceOfTaxWarehouse" : "ReferenceOfTaxWarehouse",
      "StreetNumber" : "abc",
      "City" : "asxx",
      "Postcode" : "#bp5"
    },
    "Attributes" : {
      "DeferredSubmissionFlag" : null,
      "SubmissionMessageType" : null
    },
    "HeaderEadEsad" : {
      "DateAndTimeOfUpdateValidation" : "2022-01-31T14:05:01",
      "DestinationTypeCode" : null,
      "JourneyTime" : "H24",
      "SequenceNumber" : "98",
      "TransportArrangement" : null
    },
    "ComplementConsigneeTrader" : {
      "MemberStateCode" : "TG",
      "DateNAttConsign" : "2022-01-31T00:00:00.000+00:00",
      "SerialNumberOfCertificateOfExemption" : "abcdefghij"
    },
    "DispatchImportOffice" : {
      "ReferenceNumber" : "ReferenceNumber"
    },
    "EadEsad" : {
      "DateOfDispatch" : "2022-01-31T00:00:00.000+00:00",
      "ImportSad" : [ {
        "ImportSadNumber" : "[4X3S!U[0z$+f"
      }, {
        "ImportSadNumber" : "[4X3S!U[0z$+f"
      }, {
        "ImportSadNumber" : "[4X3S!U[0z$+f"
      }, {
        "ImportSadNumber" : "[4X3S!U[0z$+f"
      }, {
        "ImportSadNumber" : "[4X3S!U[0z$+f"
      } ],
      "UpstreamArc" : "09GKL5BWYERZV82CJV0V1",
      "LocalReferenceNumber" : "~00J]fkDK1(VGkj>TeJ6",
      "OriginTypeCode" : null,
      "InvoiceNumber" : "azertyui",
      "InvoiceDate" : "2022-01-31T00:00:00.000+00:00",
      "TimeOfDispatch" : "01:43:45"
    },
    "FirstTransporterTrader" : {
      "StreetName" : "azertyuio",
      "__language" : "tg",
      "TraderName" : "edcvfr",
      "StreetNumber" : "abc",
      "City" : "asxx",
      "VatNumber" : "fredc",
      "Postcode" : "#bp5"
    },
    "ConsignorTrader" : {
      "StreetName" : "azertyuio",
      "__language" : "tg",
      "TraderName" : "edcvfr",
      "StreetNumber" : "abc",
      "City" : "asxx",
      "TraderExciseNumber" : "WNYmU9ai8UArd",
      "Postcode" : "#bp5"
    },
    "DeliveryPlaceTrader" : {
      "StreetName" : "azertyuio",
      "__language" : "tg",
      "TraderName" : "edcvfr",
      "Traderid" : "aqwxsz",
      "StreetNumber" : "abc",
      "City" : "asxx",
      "Postcode" : "#bp5"
    },
    "TransportDetails" : [ {
      "__language" : "tg",
      "ComplementaryInformation" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "SealInformation" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "TransportUnitCode" : "29",
      "IdentityOfTransportUnits" : "azertyui",
      "CommercialSealIdentification" : "azertyui"
    }, {
      "__language" : "tg",
      "ComplementaryInformation" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "SealInformation" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "TransportUnitCode" : "29",
      "IdentityOfTransportUnits" : "azertyui",
      "CommercialSealIdentification" : "azertyui"
    }, {
      "__language" : "tg",
      "ComplementaryInformation" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "SealInformation" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "TransportUnitCode" : "29",
      "IdentityOfTransportUnits" : "azertyui",
      "CommercialSealIdentification" : "azertyui"
    }, {
      "__language" : "tg",
      "ComplementaryInformation" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "SealInformation" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "TransportUnitCode" : "29",
      "IdentityOfTransportUnits" : "azertyui",
      "CommercialSealIdentification" : "azertyui"
    }, {
      "__language" : "tg",
      "ComplementaryInformation" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "SealInformation" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "TransportUnitCode" : "29",
      "IdentityOfTransportUnits" : "azertyui",
      "CommercialSealIdentification" : "azertyui"
    } ],
    "DeliveryPlaceCustomsOffice" : {
      "ReferenceNumber" : "BWgnQuPY"
    },
    "TransportMode" : {
      "__language" : "tg",
      "TransportModeCode" : "33",
      "ComplementaryInformation" : {
        "__language" : "tg",
        "_content_" : "adverty"
      }
    },
    "BodyEadEsad" : [ {
      "AlcoholicStrengthByVolumeInPercentage" : "8186 ou 590.2 ou 802.66",
      "BrandNameOfProducts" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "DesignationOfOrigin" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "DegreePlato" : "8186 ou 590.2 ou 802.66",
      "FiscalMarkUsedFlag" : null,
      "CodeCompl" : "CodeCompl",
      "Quantity" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "BodyRecordUniqueReference" : "553",
      "CommercialDescription" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "Density" : "8186 ou 590.2 ou 802.66",
      "PrixFact" : "5850130 ou 95991385 ou 1234567890",
      "GrossMass" : "1831870521 ou 7361611.7 ou 907545.17 ou 6057.125 ou 6586454.2069 ou 35.68430 ou 3979.145140",
      "ExciseProductCode" : "@NM1",
      "NetMass" : "1831870521 ou 7361611.7 ou 907545.17 ou 6057.125 ou 6586454.2069 ou 35.68430 ou 3979.145140",
      "SizeOfProducer" : "865122304357",
      "FiscalMark" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "CnCode" : "29263090",
      "WineProduct" : {
        "WineGrowingZoneCode" : "29",
        "__language" : "tg",
        "WineOperation" : [ {
          "WineOperationCode" : "33"
        }, {
          "WineOperationCode" : "33"
        }, {
          "WineOperationCode" : "33"
        }, {
          "WineOperationCode" : "33"
        }, {
          "WineOperationCode" : "33"
        } ],
        "ThirdCountryOfDestination" : "Tg",
        "WineProductCategory" : null,
        "OtherInformation" : {
          "__language" : "tg",
          "_content_" : "qwertyazerty"
        },
        "ThirdCountryOfOrigin" : "Tg"
      },
      "Package" : [ {
        "__language" : "tg",
        "KindOfPackages" : "D!",
        "ShippingMarks" : "azerty",
        "SealInformation" : {
          "__language" : "tg",
          "_content_" : "qwertyazerty"
        },
        "NumberOfPackages" : "50970",
        "CommercialSealIdentification" : "azertyui"
      }, {
        "__language" : "tg",
        "KindOfPackages" : "D!",
        "ShippingMarks" : "azerty",
        "SealInformation" : {
          "__language" : "tg",
          "_content_" : "qwertyazerty"
        },
        "NumberOfPackages" : "50970",
        "CommercialSealIdentification" : "azertyui"
      }, {
        "__language" : "tg",
        "KindOfPackages" : "D!",
        "ShippingMarks" : "azerty",
        "SealInformation" : {
          "__language" : "tg",
          "_content_" : "qwertyazerty"
        },
        "NumberOfPackages" : "50970",
        "CommercialSealIdentification" : "azertyui"
      }, {
        "__language" : "tg",
        "KindOfPackages" : "D!",
        "ShippingMarks" : "azerty",
        "SealInformation" : {
          "__language" : "tg",
          "_content_" : "qwertyazerty"
        },
        "NumberOfPackages" : "50970",
        "CommercialSealIdentification" : "azertyui"
      }, {
        "__language" : "tg",
        "KindOfPackages" : "D!",
        "ShippingMarks" : "azerty",
        "SealInformation" : {
          "__language" : "tg",
          "_content_" : "qwertyazerty"
        },
        "NumberOfPackages" : "50970",
        "CommercialSealIdentification" : "azertyui"
      } ],
      "IndependentSmallProducersDeclaration" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "MaturationPeriodOrAgeOfProducts" : {
        "__language" : "tg",
        "_content_" : "azertys"
      }
    }, {
      "AlcoholicStrengthByVolumeInPercentage" : "8186 ou 590.2 ou 802.66",
      "BrandNameOfProducts" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "DesignationOfOrigin" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "DegreePlato" : "8186 ou 590.2 ou 802.66",
      "FiscalMarkUsedFlag" : null,
      "CodeCompl" : "CodeCompl",
      "Quantity" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "BodyRecordUniqueReference" : "553",
      "CommercialDescription" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "Density" : "8186 ou 590.2 ou 802.66",
      "PrixFact" : "5850130 ou 95991385 ou 1234567890",
      "GrossMass" : "1831870521 ou 7361611.7 ou 907545.17 ou 6057.125 ou 6586454.2069 ou 35.68430 ou 3979.145140",
      "ExciseProductCode" : "@NM1",
      "NetMass" : "1831870521 ou 7361611.7 ou 907545.17 ou 6057.125 ou 6586454.2069 ou 35.68430 ou 3979.145140",
      "SizeOfProducer" : "865122304357",
      "FiscalMark" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "CnCode" : "29263090",
      "WineProduct" : {
        "WineGrowingZoneCode" : "29",
        "__language" : "tg",
        "WineOperation" : [ {
          "WineOperationCode" : "33"
        }, {
          "WineOperationCode" : "33"
        }, {
          "WineOperationCode" : "33"
        }, {
          "WineOperationCode" : "33"
        }, {
          "WineOperationCode" : "33"
        } ],
        "ThirdCountryOfDestination" : "Tg",
        "WineProductCategory" : null,
        "OtherInformation" : {
          "__language" : "tg",
          "_content_" : "qwertyazerty"
        },
        "ThirdCountryOfOrigin" : "Tg"
      },
      "Package" : [ {
        "__language" : "tg",
        "KindOfPackages" : "D!",
        "ShippingMarks" : "azerty",
        "SealInformation" : {
          "__language" : "tg",
          "_content_" : "qwertyazerty"
        },
        "NumberOfPackages" : "50970",
        "CommercialSealIdentification" : "azertyui"
      }, {
        "__language" : "tg",
        "KindOfPackages" : "D!",
        "ShippingMarks" : "azerty",
        "SealInformation" : {
          "__language" : "tg",
          "_content_" : "qwertyazerty"
        },
        "NumberOfPackages" : "50970",
        "CommercialSealIdentification" : "azertyui"
      }, {
        "__language" : "tg",
        "KindOfPackages" : "D!",
        "ShippingMarks" : "azerty",
        "SealInformation" : {
          "__language" : "tg",
          "_content_" : "qwertyazerty"
        },
        "NumberOfPackages" : "50970",
        "CommercialSealIdentification" : "azertyui"
      }, {
        "__language" : "tg",
        "KindOfPackages" : "D!",
        "ShippingMarks" : "azerty",
        "SealInformation" : {
          "__language" : "tg",
          "_content_" : "qwertyazerty"
        },
        "NumberOfPackages" : "50970",
        "CommercialSealIdentification" : "azertyui"
      }, {
        "__language" : "tg",
        "KindOfPackages" : "D!",
        "ShippingMarks" : "azerty",
        "SealInformation" : {
          "__language" : "tg",
          "_content_" : "qwertyazerty"
        },
        "NumberOfPackages" : "50970",
        "CommercialSealIdentification" : "azertyui"
      } ],
      "IndependentSmallProducersDeclaration" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "MaturationPeriodOrAgeOfProducts" : {
        "__language" : "tg",
        "_content_" : "azertys"
      }
    }, {
      "AlcoholicStrengthByVolumeInPercentage" : "8186 ou 590.2 ou 802.66",
      "BrandNameOfProducts" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "DesignationOfOrigin" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "DegreePlato" : "8186 ou 590.2 ou 802.66",
      "FiscalMarkUsedFlag" : null,
      "CodeCompl" : "CodeCompl",
      "Quantity" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "BodyRecordUniqueReference" : "553",
      "CommercialDescription" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "Density" : "8186 ou 590.2 ou 802.66",
      "PrixFact" : "5850130 ou 95991385 ou 1234567890",
      "GrossMass" : "1831870521 ou 7361611.7 ou 907545.17 ou 6057.125 ou 6586454.2069 ou 35.68430 ou 3979.145140",
      "ExciseProductCode" : "@NM1",
      "NetMass" : "1831870521 ou 7361611.7 ou 907545.17 ou 6057.125 ou 6586454.2069 ou 35.68430 ou 3979.145140",
      "SizeOfProducer" : "865122304357",
      "FiscalMark" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "CnCode" : "29263090",
      "WineProduct" : {
        "WineGrowingZoneCode" : "29",
        "__language" : "tg",
        "WineOperation" : [ {
          "WineOperationCode" : "33"
        }, {
          "WineOperationCode" : "33"
        }, {
          "WineOperationCode" : "33"
        }, {
          "WineOperationCode" : "33"
        }, {
          "WineOperationCode" : "33"
        } ],
        "ThirdCountryOfDestination" : "Tg",
        "WineProductCategory" : null,
        "OtherInformation" : {
          "__language" : "tg",
          "_content_" : "qwertyazerty"
        },
        "ThirdCountryOfOrigin" : "Tg"
      },
      "Package" : [ {
        "__language" : "tg",
        "KindOfPackages" : "D!",
        "ShippingMarks" : "azerty",
        "SealInformation" : {
          "__language" : "tg",
          "_content_" : "qwertyazerty"
        },
        "NumberOfPackages" : "50970",
        "CommercialSealIdentification" : "azertyui"
      }, {
        "__language" : "tg",
        "KindOfPackages" : "D!",
        "ShippingMarks" : "azerty",
        "SealInformation" : {
          "__language" : "tg",
          "_content_" : "qwertyazerty"
        },
        "NumberOfPackages" : "50970",
        "CommercialSealIdentification" : "azertyui"
      }, {
        "__language" : "tg",
        "KindOfPackages" : "D!",
        "ShippingMarks" : "azerty",
        "SealInformation" : {
          "__language" : "tg",
          "_content_" : "qwertyazerty"
        },
        "NumberOfPackages" : "50970",
        "CommercialSealIdentification" : "azertyui"
      }, {
        "__language" : "tg",
        "KindOfPackages" : "D!",
        "ShippingMarks" : "azerty",
        "SealInformation" : {
          "__language" : "tg",
          "_content_" : "qwertyazerty"
        },
        "NumberOfPackages" : "50970",
        "CommercialSealIdentification" : "azertyui"
      }, {
        "__language" : "tg",
        "KindOfPackages" : "D!",
        "ShippingMarks" : "azerty",
        "SealInformation" : {
          "__language" : "tg",
          "_content_" : "qwertyazerty"
        },
        "NumberOfPackages" : "50970",
        "CommercialSealIdentification" : "azertyui"
      } ],
      "IndependentSmallProducersDeclaration" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "MaturationPeriodOrAgeOfProducts" : {
        "__language" : "tg",
        "_content_" : "azertys"
      }
    }, {
      "AlcoholicStrengthByVolumeInPercentage" : "8186 ou 590.2 ou 802.66",
      "BrandNameOfProducts" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "DesignationOfOrigin" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "DegreePlato" : "8186 ou 590.2 ou 802.66",
      "FiscalMarkUsedFlag" : null,
      "CodeCompl" : "CodeCompl",
      "Quantity" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "BodyRecordUniqueReference" : "553",
      "CommercialDescription" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "Density" : "8186 ou 590.2 ou 802.66",
      "PrixFact" : "5850130 ou 95991385 ou 1234567890",
      "GrossMass" : "1831870521 ou 7361611.7 ou 907545.17 ou 6057.125 ou 6586454.2069 ou 35.68430 ou 3979.145140",
      "ExciseProductCode" : "@NM1",
      "NetMass" : "1831870521 ou 7361611.7 ou 907545.17 ou 6057.125 ou 6586454.2069 ou 35.68430 ou 3979.145140",
      "SizeOfProducer" : "865122304357",
      "FiscalMark" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "CnCode" : "29263090",
      "WineProduct" : {
        "WineGrowingZoneCode" : "29",
        "__language" : "tg",
        "WineOperation" : [ {
          "WineOperationCode" : "33"
        }, {
          "WineOperationCode" : "33"
        }, {
          "WineOperationCode" : "33"
        }, {
          "WineOperationCode" : "33"
        }, {
          "WineOperationCode" : "33"
        } ],
        "ThirdCountryOfDestination" : "Tg",
        "WineProductCategory" : null,
        "OtherInformation" : {
          "__language" : "tg",
          "_content_" : "qwertyazerty"
        },
        "ThirdCountryOfOrigin" : "Tg"
      },
      "Package" : [ {
        "__language" : "tg",
        "KindOfPackages" : "D!",
        "ShippingMarks" : "azerty",
        "SealInformation" : {
          "__language" : "tg",
          "_content_" : "qwertyazerty"
        },
        "NumberOfPackages" : "50970",
        "CommercialSealIdentification" : "azertyui"
      }, {
        "__language" : "tg",
        "KindOfPackages" : "D!",
        "ShippingMarks" : "azerty",
        "SealInformation" : {
          "__language" : "tg",
          "_content_" : "qwertyazerty"
        },
        "NumberOfPackages" : "50970",
        "CommercialSealIdentification" : "azertyui"
      }, {
        "__language" : "tg",
        "KindOfPackages" : "D!",
        "ShippingMarks" : "azerty",
        "SealInformation" : {
          "__language" : "tg",
          "_content_" : "qwertyazerty"
        },
        "NumberOfPackages" : "50970",
        "CommercialSealIdentification" : "azertyui"
      }, {
        "__language" : "tg",
        "KindOfPackages" : "D!",
        "ShippingMarks" : "azerty",
        "SealInformation" : {
          "__language" : "tg",
          "_content_" : "qwertyazerty"
        },
        "NumberOfPackages" : "50970",
        "CommercialSealIdentification" : "azertyui"
      }, {
        "__language" : "tg",
        "KindOfPackages" : "D!",
        "ShippingMarks" : "azerty",
        "SealInformation" : {
          "__language" : "tg",
          "_content_" : "qwertyazerty"
        },
        "NumberOfPackages" : "50970",
        "CommercialSealIdentification" : "azertyui"
      } ],
      "IndependentSmallProducersDeclaration" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "MaturationPeriodOrAgeOfProducts" : {
        "__language" : "tg",
        "_content_" : "azertys"
      }
    }, {
      "AlcoholicStrengthByVolumeInPercentage" : "8186 ou 590.2 ou 802.66",
      "BrandNameOfProducts" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "DesignationOfOrigin" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "DegreePlato" : "8186 ou 590.2 ou 802.66",
      "FiscalMarkUsedFlag" : null,
      "CodeCompl" : "CodeCompl",
      "Quantity" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "BodyRecordUniqueReference" : "553",
      "CommercialDescription" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "Density" : "8186 ou 590.2 ou 802.66",
      "PrixFact" : "5850130 ou 95991385 ou 1234567890",
      "GrossMass" : "1831870521 ou 7361611.7 ou 907545.17 ou 6057.125 ou 6586454.2069 ou 35.68430 ou 3979.145140",
      "ExciseProductCode" : "@NM1",
      "NetMass" : "1831870521 ou 7361611.7 ou 907545.17 ou 6057.125 ou 6586454.2069 ou 35.68430 ou 3979.145140",
      "SizeOfProducer" : "865122304357",
      "FiscalMark" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "CnCode" : "29263090",
      "WineProduct" : {
        "WineGrowingZoneCode" : "29",
        "__language" : "tg",
        "WineOperation" : [ {
          "WineOperationCode" : "33"
        }, {
          "WineOperationCode" : "33"
        }, {
          "WineOperationCode" : "33"
        }, {
          "WineOperationCode" : "33"
        }, {
          "WineOperationCode" : "33"
        } ],
        "ThirdCountryOfDestination" : "Tg",
        "WineProductCategory" : null,
        "OtherInformation" : {
          "__language" : "tg",
          "_content_" : "qwertyazerty"
        },
        "ThirdCountryOfOrigin" : "Tg"
      },
      "Package" : [ {
        "__language" : "tg",
        "KindOfPackages" : "D!",
        "ShippingMarks" : "azerty",
        "SealInformation" : {
          "__language" : "tg",
          "_content_" : "qwertyazerty"
        },
        "NumberOfPackages" : "50970",
        "CommercialSealIdentification" : "azertyui"
      }, {
        "__language" : "tg",
        "KindOfPackages" : "D!",
        "ShippingMarks" : "azerty",
        "SealInformation" : {
          "__language" : "tg",
          "_content_" : "qwertyazerty"
        },
        "NumberOfPackages" : "50970",
        "CommercialSealIdentification" : "azertyui"
      }, {
        "__language" : "tg",
        "KindOfPackages" : "D!",
        "ShippingMarks" : "azerty",
        "SealInformation" : {
          "__language" : "tg",
          "_content_" : "qwertyazerty"
        },
        "NumberOfPackages" : "50970",
        "CommercialSealIdentification" : "azertyui"
      }, {
        "__language" : "tg",
        "KindOfPackages" : "D!",
        "ShippingMarks" : "azerty",
        "SealInformation" : {
          "__language" : "tg",
          "_content_" : "qwertyazerty"
        },
        "NumberOfPackages" : "50970",
        "CommercialSealIdentification" : "azertyui"
      }, {
        "__language" : "tg",
        "KindOfPackages" : "D!",
        "ShippingMarks" : "azerty",
        "SealInformation" : {
          "__language" : "tg",
          "_content_" : "qwertyazerty"
        },
        "NumberOfPackages" : "50970",
        "CommercialSealIdentification" : "azertyui"
      } ],
      "IndependentSmallProducersDeclaration" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "MaturationPeriodOrAgeOfProducts" : {
        "__language" : "tg",
        "_content_" : "azertys"
      }
    } ],
    "CompetentAuthorityDispatchOffice" : {
      "ReferenceNumber" : "BWgnQuPY"
    },
    "TransportArrangerTrader" : {
      "StreetName" : "azertyuio",
      "__language" : "tg",
      "TraderName" : "edcvfr",
      "StreetNumber" : "abc",
      "City" : "asxx",
      "VatNumber" : "fredc",
      "Postcode" : "#bp5"
    }
  }
}'
import org.openapitools.client.*;
import org.openapitools.client.auth.*;
import org.openapitools.client.model.*;
import org.openapitools.client.api.ExpediteurApi;

import java.io.File;
import java.util.*;

public class ExpediteurApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        ExpediteurApi apiInstance = new ExpediteurApi();
        String correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant corrélé au messageId du message initial
        BodyType801 bodyType801 = ; // BodyType801 | 

        try {
            'String' result = apiInstance.message801(correlationId, bodyType801);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ExpediteurApi#message801");
            e.printStackTrace();
        }
    }
}
import org.openapitools.client.api.ExpediteurApi;

public class ExpediteurApiExample {
    public static void main(String[] args) {
        ExpediteurApi apiInstance = new ExpediteurApi();
        String correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant corrélé au messageId du message initial
        BodyType801 bodyType801 = ; // BodyType801 | 

        try {
            'String' result = apiInstance.message801(correlationId, bodyType801);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ExpediteurApi#message801");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
ExpediteurApi *apiInstance = [[ExpediteurApi alloc] init];
String *correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // Identifiant corrélé au messageId du message initial (default to null)
BodyType801 *bodyType801 = ; //  (optional)

// Endpoint de déclenchement d'un message 801
[apiInstance message801With:correlationId
    bodyType801:bodyType801
              completionHandler: ^('String' output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var ApiFaccediladeGunGamma2VersEdi = require('api_faccedilade_gun__gamma_2_vers_edi');

// Create an instance of the API class
var api = new ApiFaccediladeGunGamma2VersEdi.ExpediteurApi()
var correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // {String} Identifiant corrélé au messageId du message initial
var opts = {
  'bodyType801':  // {BodyType801} 
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.message801(correlationId, opts, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class message801Example
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new ExpediteurApi();
            var correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b;  // String | Identifiant corrélé au messageId du message initial (default to null)
            var bodyType801 = new BodyType801(); // BodyType801 |  (optional) 

            try {
                // Endpoint de déclenchement d'un message 801
                'String' result = apiInstance.message801(correlationId, bodyType801);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling ExpediteurApi.message801: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\ExpediteurApi();
$correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant corrélé au messageId du message initial
$bodyType801 = ; // BodyType801 | 

try {
    $result = $api_instance->message801($correlationId, $bodyType801);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ExpediteurApi->message801: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::ExpediteurApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::ExpediteurApi->new();
my $correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; # String | Identifiant corrélé au messageId du message initial
my $bodyType801 = WWW::OPenAPIClient::Object::BodyType801->new(); # BodyType801 | 

eval {
    my $result = $api_instance->message801(correlationId => $correlationId, bodyType801 => $bodyType801);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ExpediteurApi->message801: $@\n";
}
from __future__ import print_statement
import time
import openapi_client
from openapi_client.rest import ApiException
from pprint import pprint

# Create an instance of the API class
api_instance = openapi_client.ExpediteurApi()
correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b # String | Identifiant corrélé au messageId du message initial (default to null)
bodyType801 =  # BodyType801 |  (optional)

try:
    # Endpoint de déclenchement d'un message 801
    api_response = api_instance.message801(correlationId, bodyType801=bodyType801)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ExpediteurApi->message801: %s\n" % e)
extern crate ExpediteurApi;

pub fn main() {
    let correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String
    let bodyType801 = ; // BodyType801

    let mut context = ExpediteurApi::Context::default();
    let result = client.message801(correlationId, bodyType801, &context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Header parameters
Name Description
correlationId*
String
Identifiant corrélé au messageId du message initial
Required
Body parameters
Name Description
bodyType801

Responses


message802

Endpoint de déclenchement d'un message 802

Endpoint de déclenchement d'un message 802


/802

Usage and SDK Samples

curl -X POST \
 -H "Accept: text/plain" \
 -H "Content-Type: application/json" \
 "http://localhost/802" \
 -d '{
  "ReminderMessageForExciseMovement" : {
    "ExciseMovement" : {
      "AdministrativeReferenceCode" : "09GKL5BWYERZV82CJV0V1",
      "SequenceNumber" : "98"
    },
    "Attributes" : {
      "ReminderMessageType" : null,
      "__language" : "tg",
      "DateAndTimeOfIssuanceOfReminder" : "2022-01-31T14:05:01",
      "ReminderInformation" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "LimitDateAndTime" : "2022-01-31T14:05:01",
      "Crosschecking" : "Crosschecking"
    }
  }
}'
import org.openapitools.client.*;
import org.openapitools.client.auth.*;
import org.openapitools.client.model.*;
import org.openapitools.client.api.ExpediteurApi;

import java.io.File;
import java.util.*;

public class ExpediteurApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        ExpediteurApi apiInstance = new ExpediteurApi();
        BodyType802 bodyType802 = ; // BodyType802 | 

        try {
            'String' result = apiInstance.message802(bodyType802);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ExpediteurApi#message802");
            e.printStackTrace();
        }
    }
}
import org.openapitools.client.api.ExpediteurApi;

public class ExpediteurApiExample {
    public static void main(String[] args) {
        ExpediteurApi apiInstance = new ExpediteurApi();
        BodyType802 bodyType802 = ; // BodyType802 | 

        try {
            'String' result = apiInstance.message802(bodyType802);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ExpediteurApi#message802");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
ExpediteurApi *apiInstance = [[ExpediteurApi alloc] init];
BodyType802 *bodyType802 = ; //  (optional)

// Endpoint de déclenchement d'un message 802
[apiInstance message802With:bodyType802
              completionHandler: ^('String' output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var ApiFaccediladeGunGamma2VersEdi = require('api_faccedilade_gun__gamma_2_vers_edi');

// Create an instance of the API class
var api = new ApiFaccediladeGunGamma2VersEdi.ExpediteurApi()
var opts = {
  'bodyType802':  // {BodyType802} 
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.message802(opts, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class message802Example
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new ExpediteurApi();
            var bodyType802 = new BodyType802(); // BodyType802 |  (optional) 

            try {
                // Endpoint de déclenchement d'un message 802
                'String' result = apiInstance.message802(bodyType802);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling ExpediteurApi.message802: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\ExpediteurApi();
$bodyType802 = ; // BodyType802 | 

try {
    $result = $api_instance->message802($bodyType802);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ExpediteurApi->message802: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::ExpediteurApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::ExpediteurApi->new();
my $bodyType802 = WWW::OPenAPIClient::Object::BodyType802->new(); # BodyType802 | 

eval {
    my $result = $api_instance->message802(bodyType802 => $bodyType802);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ExpediteurApi->message802: $@\n";
}
from __future__ import print_statement
import time
import openapi_client
from openapi_client.rest import ApiException
from pprint import pprint

# Create an instance of the API class
api_instance = openapi_client.ExpediteurApi()
bodyType802 =  # BodyType802 |  (optional)

try:
    # Endpoint de déclenchement d'un message 802
    api_response = api_instance.message802(bodyType802=bodyType802)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ExpediteurApi->message802: %s\n" % e)
extern crate ExpediteurApi;

pub fn main() {
    let bodyType802 = ; // BodyType802

    let mut context = ExpediteurApi::Context::default();
    let result = client.message802(bodyType802, &context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Body parameters
Name Description
bodyType802

Responses


message803

Endpoint de déclenchement d'un message 803

Endpoint de déclenchement d'un message 803


/803

Usage and SDK Samples

curl -X POST \
 -H "Accept: text/plain" \
 -H "Content-Type: application/json" \
 "http://localhost/803" \
 -d '{
  "NotificationOfDivertedEADESAD" : {
    "ExciseNotification" : {
      "NotificationDateAndTime" : "2022-01-31T14:05:01",
      "NotificationType" : null,
      "AdministrativeReferenceCode" : "09GKL5BWYERZV82CJV0V1",
      "SequenceNumber" : "98"
    }
  }
}'
import org.openapitools.client.*;
import org.openapitools.client.auth.*;
import org.openapitools.client.model.*;
import org.openapitools.client.api.ExpediteurApi;

import java.io.File;
import java.util.*;

public class ExpediteurApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        ExpediteurApi apiInstance = new ExpediteurApi();
        BodyType803 bodyType803 = ; // BodyType803 | 

        try {
            'String' result = apiInstance.message803(bodyType803);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ExpediteurApi#message803");
            e.printStackTrace();
        }
    }
}
import org.openapitools.client.api.ExpediteurApi;

public class ExpediteurApiExample {
    public static void main(String[] args) {
        ExpediteurApi apiInstance = new ExpediteurApi();
        BodyType803 bodyType803 = ; // BodyType803 | 

        try {
            'String' result = apiInstance.message803(bodyType803);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ExpediteurApi#message803");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
ExpediteurApi *apiInstance = [[ExpediteurApi alloc] init];
BodyType803 *bodyType803 = ; //  (optional)

// Endpoint de déclenchement d'un message 803
[apiInstance message803With:bodyType803
              completionHandler: ^('String' output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var ApiFaccediladeGunGamma2VersEdi = require('api_faccedilade_gun__gamma_2_vers_edi');

// Create an instance of the API class
var api = new ApiFaccediladeGunGamma2VersEdi.ExpediteurApi()
var opts = {
  'bodyType803':  // {BodyType803} 
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.message803(opts, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class message803Example
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new ExpediteurApi();
            var bodyType803 = new BodyType803(); // BodyType803 |  (optional) 

            try {
                // Endpoint de déclenchement d'un message 803
                'String' result = apiInstance.message803(bodyType803);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling ExpediteurApi.message803: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\ExpediteurApi();
$bodyType803 = ; // BodyType803 | 

try {
    $result = $api_instance->message803($bodyType803);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ExpediteurApi->message803: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::ExpediteurApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::ExpediteurApi->new();
my $bodyType803 = WWW::OPenAPIClient::Object::BodyType803->new(); # BodyType803 | 

eval {
    my $result = $api_instance->message803(bodyType803 => $bodyType803);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ExpediteurApi->message803: $@\n";
}
from __future__ import print_statement
import time
import openapi_client
from openapi_client.rest import ApiException
from pprint import pprint

# Create an instance of the API class
api_instance = openapi_client.ExpediteurApi()
bodyType803 =  # BodyType803 |  (optional)

try:
    # Endpoint de déclenchement d'un message 803
    api_response = api_instance.message803(bodyType803=bodyType803)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ExpediteurApi->message803: %s\n" % e)
extern crate ExpediteurApi;

pub fn main() {
    let bodyType803 = ; // BodyType803

    let mut context = ExpediteurApi::Context::default();
    let result = client.message803(bodyType803, &context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Body parameters
Name Description
bodyType803

Responses


message807

Endpoint de déclenchement d'un message 807

Endpoint de déclenchement d'un message 807


/807

Usage and SDK Samples

curl -X POST \
 -H "Accept: text/plain" \
 -H "Content-Type: application/json" \
 "http://localhost/807" \
 -d '{
  "InterruptionOfMovement" : {
    "ReferenceControlReport" : [ {
      "ControlReportReference" : "YLTBMoad04szv2L5"
    }, {
      "ControlReportReference" : "YLTBMoad04szv2L5"
    }, {
      "ControlReportReference" : "YLTBMoad04szv2L5"
    }, {
      "ControlReportReference" : "YLTBMoad04szv2L5"
    }, {
      "ControlReportReference" : "YLTBMoad04szv2L5"
    } ],
    "Attributes" : {
      "DateAndTimeOfIssuance" : "2022-01-31T14:05:01",
      "__language" : "tg",
      "ComplementaryInformation" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "ReasonForInterruptionCode" : "33",
      "AdministrativeReferenceCode" : "09GKL5BWYERZV82CJV0V1",
      "ReferenceNumberOfExciseOffice" : "BWgnQuPY",
      "ExciseOfficerIdentification" : "azertyui"
    },
    "ReferenceEventReport" : [ {
      "EventReportNumber" : "YLTBMoad04szv2L5"
    }, {
      "EventReportNumber" : "YLTBMoad04szv2L5"
    }, {
      "EventReportNumber" : "YLTBMoad04szv2L5"
    }, {
      "EventReportNumber" : "YLTBMoad04szv2L5"
    }, {
      "EventReportNumber" : "YLTBMoad04szv2L5"
    } ]
  }
}'
import org.openapitools.client.*;
import org.openapitools.client.auth.*;
import org.openapitools.client.model.*;
import org.openapitools.client.api.ExpediteurApi;

import java.io.File;
import java.util.*;

public class ExpediteurApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        ExpediteurApi apiInstance = new ExpediteurApi();
        BodyType807 bodyType807 = ; // BodyType807 | 

        try {
            'String' result = apiInstance.message807(bodyType807);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ExpediteurApi#message807");
            e.printStackTrace();
        }
    }
}
import org.openapitools.client.api.ExpediteurApi;

public class ExpediteurApiExample {
    public static void main(String[] args) {
        ExpediteurApi apiInstance = new ExpediteurApi();
        BodyType807 bodyType807 = ; // BodyType807 | 

        try {
            'String' result = apiInstance.message807(bodyType807);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ExpediteurApi#message807");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
ExpediteurApi *apiInstance = [[ExpediteurApi alloc] init];
BodyType807 *bodyType807 = ; //  (optional)

// Endpoint de déclenchement d'un message 807
[apiInstance message807With:bodyType807
              completionHandler: ^('String' output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var ApiFaccediladeGunGamma2VersEdi = require('api_faccedilade_gun__gamma_2_vers_edi');

// Create an instance of the API class
var api = new ApiFaccediladeGunGamma2VersEdi.ExpediteurApi()
var opts = {
  'bodyType807':  // {BodyType807} 
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.message807(opts, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class message807Example
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new ExpediteurApi();
            var bodyType807 = new BodyType807(); // BodyType807 |  (optional) 

            try {
                // Endpoint de déclenchement d'un message 807
                'String' result = apiInstance.message807(bodyType807);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling ExpediteurApi.message807: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\ExpediteurApi();
$bodyType807 = ; // BodyType807 | 

try {
    $result = $api_instance->message807($bodyType807);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ExpediteurApi->message807: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::ExpediteurApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::ExpediteurApi->new();
my $bodyType807 = WWW::OPenAPIClient::Object::BodyType807->new(); # BodyType807 | 

eval {
    my $result = $api_instance->message807(bodyType807 => $bodyType807);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ExpediteurApi->message807: $@\n";
}
from __future__ import print_statement
import time
import openapi_client
from openapi_client.rest import ApiException
from pprint import pprint

# Create an instance of the API class
api_instance = openapi_client.ExpediteurApi()
bodyType807 =  # BodyType807 |  (optional)

try:
    # Endpoint de déclenchement d'un message 807
    api_response = api_instance.message807(bodyType807=bodyType807)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ExpediteurApi->message807: %s\n" % e)
extern crate ExpediteurApi;

pub fn main() {
    let bodyType807 = ; // BodyType807

    let mut context = ExpediteurApi::Context::default();
    let result = client.message807(bodyType807, &context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Body parameters
Name Description
bodyType807

Responses


message810

Endpoint de déclenchement d'un message 810

Endpoint de déclenchement d'un message 810


/810

Usage and SDK Samples

curl -X POST \
 -H "Accept: text/plain" \
 -H "Content-Type: application/json" \
 "http://localhost/810" \
 -d '{
  "CancellationOfEAD" : {
    "Attributes" : {
      "DateAndTimeOfValidationOfCancellation" : "2022-01-31T14:05:01"
    },
    "Cancellation" : {
      "ComplementaryInformation" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "CancellationReasonCode" : "3"
    },
    "ExciseMovementEad" : {
      "AdministrativeReferenceCode" : "09GKL5BWYERZV82CJV0V1"
    }
  }
}'
import org.openapitools.client.*;
import org.openapitools.client.auth.*;
import org.openapitools.client.model.*;
import org.openapitools.client.api.ExpediteurApi;

import java.io.File;
import java.util.*;

public class ExpediteurApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        ExpediteurApi apiInstance = new ExpediteurApi();
        String messageId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant du message initial, sa valeur sera égale à celle du corrélé id du message en réponse.
        BodyType810 bodyType810 = ; // BodyType810 | 

        try {
            'String' result = apiInstance.message810(messageId, bodyType810);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ExpediteurApi#message810");
            e.printStackTrace();
        }
    }
}
import org.openapitools.client.api.ExpediteurApi;

public class ExpediteurApiExample {
    public static void main(String[] args) {
        ExpediteurApi apiInstance = new ExpediteurApi();
        String messageId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant du message initial, sa valeur sera égale à celle du corrélé id du message en réponse.
        BodyType810 bodyType810 = ; // BodyType810 | 

        try {
            'String' result = apiInstance.message810(messageId, bodyType810);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ExpediteurApi#message810");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
ExpediteurApi *apiInstance = [[ExpediteurApi alloc] init];
String *messageId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // Identifiant du message initial, sa valeur sera égale à celle du corrélé id du message en réponse. (default to null)
BodyType810 *bodyType810 = ; //  (optional)

// Endpoint de déclenchement d'un message 810
[apiInstance message810With:messageId
    bodyType810:bodyType810
              completionHandler: ^('String' output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var ApiFaccediladeGunGamma2VersEdi = require('api_faccedilade_gun__gamma_2_vers_edi');

// Create an instance of the API class
var api = new ApiFaccediladeGunGamma2VersEdi.ExpediteurApi()
var messageId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // {String} Identifiant du message initial, sa valeur sera égale à celle du corrélé id du message en réponse.
var opts = {
  'bodyType810':  // {BodyType810} 
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.message810(messageId, opts, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class message810Example
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new ExpediteurApi();
            var messageId = 370b56ea-37e4-497b-9d03-adec0da9cf9b;  // String | Identifiant du message initial, sa valeur sera égale à celle du corrélé id du message en réponse. (default to null)
            var bodyType810 = new BodyType810(); // BodyType810 |  (optional) 

            try {
                // Endpoint de déclenchement d'un message 810
                'String' result = apiInstance.message810(messageId, bodyType810);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling ExpediteurApi.message810: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\ExpediteurApi();
$messageId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant du message initial, sa valeur sera égale à celle du corrélé id du message en réponse.
$bodyType810 = ; // BodyType810 | 

try {
    $result = $api_instance->message810($messageId, $bodyType810);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ExpediteurApi->message810: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::ExpediteurApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::ExpediteurApi->new();
my $messageId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; # String | Identifiant du message initial, sa valeur sera égale à celle du corrélé id du message en réponse.
my $bodyType810 = WWW::OPenAPIClient::Object::BodyType810->new(); # BodyType810 | 

eval {
    my $result = $api_instance->message810(messageId => $messageId, bodyType810 => $bodyType810);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ExpediteurApi->message810: $@\n";
}
from __future__ import print_statement
import time
import openapi_client
from openapi_client.rest import ApiException
from pprint import pprint

# Create an instance of the API class
api_instance = openapi_client.ExpediteurApi()
messageId = 370b56ea-37e4-497b-9d03-adec0da9cf9b # String | Identifiant du message initial, sa valeur sera égale à celle du corrélé id du message en réponse. (default to null)
bodyType810 =  # BodyType810 |  (optional)

try:
    # Endpoint de déclenchement d'un message 810
    api_response = api_instance.message810(messageId, bodyType810=bodyType810)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ExpediteurApi->message810: %s\n" % e)
extern crate ExpediteurApi;

pub fn main() {
    let messageId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String
    let bodyType810 = ; // BodyType810

    let mut context = ExpediteurApi::Context::default();
    let result = client.message810(messageId, bodyType810, &context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Header parameters
Name Description
messageId*
String
Identifiant du message initial, sa valeur sera égale à celle du corrélé id du message en réponse.
Required
Body parameters
Name Description
bodyType810

Responses


message813

Endpoint de déclenchement d'un message 813

Endpoint de déclenchement d'un message 813


/813

Usage and SDK Samples

curl -X POST \
 -H "Accept: text/plain" \
 -H "Content-Type: application/json" \
 "http://localhost/813" \
 -d '{
  "ChangeOfDestination" : {
    "NewTransporterTrader" : {
      "StreetName" : "azertyuio",
      "__language" : "tg",
      "TraderName" : "edcvfr",
      "StreetNumber" : "abc",
      "City" : "asxx",
      "VatNumber" : "fredc",
      "Postcode" : "#bp5"
    },
    "UpdateEadEsad" : {
      "__language" : "tg",
      "TransportModeCode" : "33",
      "ComplementaryInformation" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "JourneyTime" : "H24",
      "AdministrativeReferenceCode" : "09GKL5BWYERZV82CJV0V1",
      "SequenceNumber" : "98",
      "InvoiceDate" : "2022-01-31T00:00:00.000+00:00",
      "InvoiceNumber" : "azertyui",
      "ChangedTransportArrangement" : null
    },
    "MovementGuarantee" : {
      "GuarantorTrader" : [ {
        "StreetName" : "azertyuio",
        "__language" : "tg",
        "TraderName" : "edcvfr",
        "StreetNumber" : "abc",
        "City" : "asxx",
        "TraderExciseNumber" : "WNYmU9ai8UArd",
        "Postcode" : "#bp5",
        "VatNumber" : "fredc"
      }, {
        "StreetName" : "azertyuio",
        "__language" : "tg",
        "TraderName" : "edcvfr",
        "StreetNumber" : "abc",
        "City" : "asxx",
        "TraderExciseNumber" : "WNYmU9ai8UArd",
        "Postcode" : "#bp5",
        "VatNumber" : "fredc"
      } ],
      "GuarantorTypeCode" : null
    },
    "ChangedDestination" : {
      "DestinationTypeCode" : null,
      "NewConsigneeTrader" : {
        "StreetName" : "azertyuio",
        "__language" : "tg",
        "TraderName" : "edcvfr",
        "Traderid" : "aqwxsz",
        "StreetNumber" : "abc",
        "City" : "asxx",
        "Postcode" : "#bp5"
      },
      "DeliveryPlaceTrader" : {
        "StreetName" : "azertyuio",
        "__language" : "tg",
        "TraderName" : "edcvfr",
        "Traderid" : "aqwxsz",
        "StreetNumber" : "abc",
        "City" : "asxx",
        "Postcode" : "#bp5"
      },
      "DeliveryPlaceCustomsOffice" : {
        "ReferenceNumber" : "BWgnQuPY"
      }
    },
    "TransportDetails" : [ {
      "__language" : "tg",
      "ComplementaryInformation" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "SealInformation" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "TransportUnitCode" : "29",
      "IdentityOfTransportUnits" : "azertyui",
      "CommercialSealIdentification" : "azertyui"
    }, {
      "__language" : "tg",
      "ComplementaryInformation" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "SealInformation" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "TransportUnitCode" : "29",
      "IdentityOfTransportUnits" : "azertyui",
      "CommercialSealIdentification" : "azertyui"
    }, {
      "__language" : "tg",
      "ComplementaryInformation" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "SealInformation" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "TransportUnitCode" : "29",
      "IdentityOfTransportUnits" : "azertyui",
      "CommercialSealIdentification" : "azertyui"
    }, {
      "__language" : "tg",
      "ComplementaryInformation" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "SealInformation" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "TransportUnitCode" : "29",
      "IdentityOfTransportUnits" : "azertyui",
      "CommercialSealIdentification" : "azertyui"
    }, {
      "__language" : "tg",
      "ComplementaryInformation" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "SealInformation" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "TransportUnitCode" : "29",
      "IdentityOfTransportUnits" : "azertyui",
      "CommercialSealIdentification" : "azertyui"
    } ],
    "Attributes" : {
      "DateAndTimeOfValidationOfChangeOfDestination" : "2022-01-31T14:05:01"
    },
    "NewTransportArrangerTrader" : {
      "StreetName" : "azertyuio",
      "__language" : "tg",
      "TraderName" : "edcvfr",
      "StreetNumber" : "abc",
      "City" : "asxx",
      "VatNumber" : "fredc",
      "Postcode" : "#bp5"
    }
  }
}'
import org.openapitools.client.*;
import org.openapitools.client.auth.*;
import org.openapitools.client.model.*;
import org.openapitools.client.api.ExpediteurApi;

import java.io.File;
import java.util.*;

public class ExpediteurApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        ExpediteurApi apiInstance = new ExpediteurApi();
        String correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant corrélé au messageId du message initial
        BodyType813 bodyType813 = ; // BodyType813 | 

        try {
            'String' result = apiInstance.message813(correlationId, bodyType813);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ExpediteurApi#message813");
            e.printStackTrace();
        }
    }
}
import org.openapitools.client.api.ExpediteurApi;

public class ExpediteurApiExample {
    public static void main(String[] args) {
        ExpediteurApi apiInstance = new ExpediteurApi();
        String correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant corrélé au messageId du message initial
        BodyType813 bodyType813 = ; // BodyType813 | 

        try {
            'String' result = apiInstance.message813(correlationId, bodyType813);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ExpediteurApi#message813");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
ExpediteurApi *apiInstance = [[ExpediteurApi alloc] init];
String *correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // Identifiant corrélé au messageId du message initial (default to null)
BodyType813 *bodyType813 = ; //  (optional)

// Endpoint de déclenchement d'un message 813
[apiInstance message813With:correlationId
    bodyType813:bodyType813
              completionHandler: ^('String' output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var ApiFaccediladeGunGamma2VersEdi = require('api_faccedilade_gun__gamma_2_vers_edi');

// Create an instance of the API class
var api = new ApiFaccediladeGunGamma2VersEdi.ExpediteurApi()
var correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // {String} Identifiant corrélé au messageId du message initial
var opts = {
  'bodyType813':  // {BodyType813} 
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.message813(correlationId, opts, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class message813Example
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new ExpediteurApi();
            var correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b;  // String | Identifiant corrélé au messageId du message initial (default to null)
            var bodyType813 = new BodyType813(); // BodyType813 |  (optional) 

            try {
                // Endpoint de déclenchement d'un message 813
                'String' result = apiInstance.message813(correlationId, bodyType813);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling ExpediteurApi.message813: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\ExpediteurApi();
$correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant corrélé au messageId du message initial
$bodyType813 = ; // BodyType813 | 

try {
    $result = $api_instance->message813($correlationId, $bodyType813);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ExpediteurApi->message813: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::ExpediteurApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::ExpediteurApi->new();
my $correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; # String | Identifiant corrélé au messageId du message initial
my $bodyType813 = WWW::OPenAPIClient::Object::BodyType813->new(); # BodyType813 | 

eval {
    my $result = $api_instance->message813(correlationId => $correlationId, bodyType813 => $bodyType813);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ExpediteurApi->message813: $@\n";
}
from __future__ import print_statement
import time
import openapi_client
from openapi_client.rest import ApiException
from pprint import pprint

# Create an instance of the API class
api_instance = openapi_client.ExpediteurApi()
correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b # String | Identifiant corrélé au messageId du message initial (default to null)
bodyType813 =  # BodyType813 |  (optional)

try:
    # Endpoint de déclenchement d'un message 813
    api_response = api_instance.message813(correlationId, bodyType813=bodyType813)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ExpediteurApi->message813: %s\n" % e)
extern crate ExpediteurApi;

pub fn main() {
    let correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String
    let bodyType813 = ; // BodyType813

    let mut context = ExpediteurApi::Context::default();
    let result = client.message813(correlationId, bodyType813, &context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Header parameters
Name Description
correlationId*
String
Identifiant corrélé au messageId du message initial
Required
Body parameters
Name Description
bodyType813

Responses


message818

Endpoint de déclenchement d'un message 818

Endpoint de déclenchement d'un message 818


/818

Usage and SDK Samples

curl -X POST \
 -H "Accept: text/plain" \
 -H "Content-Type: application/json" \
 "http://localhost/818" \
 -d '{
  "AcceptedOrRejectedReportOfReceiptExport" : {
    "ReportOfReceiptExport" : {
      "ComplementaryInformation" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "DateOfArrivalOfExciseProducts" : "2022-01-31T00:00:00.000+00:00",
      "GlobalConclusionOfReceipt" : null
    },
    "BodyReportOfReceiptExport" : [ {
      "ConsumptionQuantity" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "ObservedShortageOrExcess" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "ExemptQuantity" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "ExciseProductCode" : "@NM1",
      "IndicatorOfShortageOrExcess" : null,
      "BodyRecordUniqueReference" : "553",
      "RefusedQuantity" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "SuspendedQuantity" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "UnsatisfactoryReasonCode" : [ {
        "ComplementaryInformation" : {
          "__language" : "tg",
          "_content_" : "adverty"
        },
        "UnsatisfactoryReasonCode" : "33"
      }, {
        "ComplementaryInformation" : {
          "__language" : "tg",
          "_content_" : "adverty"
        },
        "UnsatisfactoryReasonCode" : "33"
      }, {
        "ComplementaryInformation" : {
          "__language" : "tg",
          "_content_" : "adverty"
        },
        "UnsatisfactoryReasonCode" : "33"
      }, {
        "ComplementaryInformation" : {
          "__language" : "tg",
          "_content_" : "adverty"
        },
        "UnsatisfactoryReasonCode" : "33"
      }, {
        "ComplementaryInformation" : {
          "__language" : "tg",
          "_content_" : "adverty"
        },
        "UnsatisfactoryReasonCode" : "33"
      } ]
    }, {
      "ConsumptionQuantity" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "ObservedShortageOrExcess" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "ExemptQuantity" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "ExciseProductCode" : "@NM1",
      "IndicatorOfShortageOrExcess" : null,
      "BodyRecordUniqueReference" : "553",
      "RefusedQuantity" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "SuspendedQuantity" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "UnsatisfactoryReasonCode" : [ {
        "ComplementaryInformation" : {
          "__language" : "tg",
          "_content_" : "adverty"
        },
        "UnsatisfactoryReasonCode" : "33"
      }, {
        "ComplementaryInformation" : {
          "__language" : "tg",
          "_content_" : "adverty"
        },
        "UnsatisfactoryReasonCode" : "33"
      }, {
        "ComplementaryInformation" : {
          "__language" : "tg",
          "_content_" : "adverty"
        },
        "UnsatisfactoryReasonCode" : "33"
      }, {
        "ComplementaryInformation" : {
          "__language" : "tg",
          "_content_" : "adverty"
        },
        "UnsatisfactoryReasonCode" : "33"
      }, {
        "ComplementaryInformation" : {
          "__language" : "tg",
          "_content_" : "adverty"
        },
        "UnsatisfactoryReasonCode" : "33"
      } ]
    }, {
      "ConsumptionQuantity" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "ObservedShortageOrExcess" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "ExemptQuantity" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "ExciseProductCode" : "@NM1",
      "IndicatorOfShortageOrExcess" : null,
      "BodyRecordUniqueReference" : "553",
      "RefusedQuantity" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "SuspendedQuantity" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "UnsatisfactoryReasonCode" : [ {
        "ComplementaryInformation" : {
          "__language" : "tg",
          "_content_" : "adverty"
        },
        "UnsatisfactoryReasonCode" : "33"
      }, {
        "ComplementaryInformation" : {
          "__language" : "tg",
          "_content_" : "adverty"
        },
        "UnsatisfactoryReasonCode" : "33"
      }, {
        "ComplementaryInformation" : {
          "__language" : "tg",
          "_content_" : "adverty"
        },
        "UnsatisfactoryReasonCode" : "33"
      }, {
        "ComplementaryInformation" : {
          "__language" : "tg",
          "_content_" : "adverty"
        },
        "UnsatisfactoryReasonCode" : "33"
      }, {
        "ComplementaryInformation" : {
          "__language" : "tg",
          "_content_" : "adverty"
        },
        "UnsatisfactoryReasonCode" : "33"
      } ]
    }, {
      "ConsumptionQuantity" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "ObservedShortageOrExcess" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "ExemptQuantity" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "ExciseProductCode" : "@NM1",
      "IndicatorOfShortageOrExcess" : null,
      "BodyRecordUniqueReference" : "553",
      "RefusedQuantity" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "SuspendedQuantity" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "UnsatisfactoryReasonCode" : [ {
        "ComplementaryInformation" : {
          "__language" : "tg",
          "_content_" : "adverty"
        },
        "UnsatisfactoryReasonCode" : "33"
      }, {
        "ComplementaryInformation" : {
          "__language" : "tg",
          "_content_" : "adverty"
        },
        "UnsatisfactoryReasonCode" : "33"
      }, {
        "ComplementaryInformation" : {
          "__language" : "tg",
          "_content_" : "adverty"
        },
        "UnsatisfactoryReasonCode" : "33"
      }, {
        "ComplementaryInformation" : {
          "__language" : "tg",
          "_content_" : "adverty"
        },
        "UnsatisfactoryReasonCode" : "33"
      }, {
        "ComplementaryInformation" : {
          "__language" : "tg",
          "_content_" : "adverty"
        },
        "UnsatisfactoryReasonCode" : "33"
      } ]
    }, {
      "ConsumptionQuantity" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "ObservedShortageOrExcess" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "ExemptQuantity" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "ExciseProductCode" : "@NM1",
      "IndicatorOfShortageOrExcess" : null,
      "BodyRecordUniqueReference" : "553",
      "RefusedQuantity" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "SuspendedQuantity" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "UnsatisfactoryReasonCode" : [ {
        "ComplementaryInformation" : {
          "__language" : "tg",
          "_content_" : "adverty"
        },
        "UnsatisfactoryReasonCode" : "33"
      }, {
        "ComplementaryInformation" : {
          "__language" : "tg",
          "_content_" : "adverty"
        },
        "UnsatisfactoryReasonCode" : "33"
      }, {
        "ComplementaryInformation" : {
          "__language" : "tg",
          "_content_" : "adverty"
        },
        "UnsatisfactoryReasonCode" : "33"
      }, {
        "ComplementaryInformation" : {
          "__language" : "tg",
          "_content_" : "adverty"
        },
        "UnsatisfactoryReasonCode" : "33"
      }, {
        "ComplementaryInformation" : {
          "__language" : "tg",
          "_content_" : "adverty"
        },
        "UnsatisfactoryReasonCode" : "33"
      } ]
    } ],
    "ExciseMovement" : {
      "AdministrativeReferenceCode" : "09GKL5BWYERZV82CJV0V1",
      "SequenceNumber" : "98"
    },
    "DeliveryPlaceTrader" : {
      "StreetName" : "azertyuio",
      "__language" : "tg",
      "TraderName" : "edcvfr",
      "Traderid" : "aqwxsz",
      "StreetNumber" : "abc",
      "City" : "asxx",
      "Postcode" : "#bp5"
    },
    "ConsigneeTrader" : {
      "StreetName" : "azertyuio",
      "__language" : "tg",
      "TraderName" : "edcvfr",
      "ConsigneeTraderEAs" : [ {
        "TraderExciseNumber" : "WNYmU9ai8UArd"
      }, {
        "TraderExciseNumber" : "WNYmU9ai8UArd"
      }, {
        "TraderExciseNumber" : "WNYmU9ai8UArd"
      }, {
        "TraderExciseNumber" : "WNYmU9ai8UArd"
      }, {
        "TraderExciseNumber" : "WNYmU9ai8UArd"
      } ],
      "Traderid" : "aqwxsz",
      "StreetNumber" : "abc",
      "City" : "asxx",
      "Postcode" : "#bp5"
    },
    "Attributes" : {
      "Status" : "0C1",
      "DateAndTimeOfValidationOfReportOfReceiptExport" : "2022-01-31T14:05:01"
    }
  }
}'
import org.openapitools.client.*;
import org.openapitools.client.auth.*;
import org.openapitools.client.model.*;
import org.openapitools.client.api.ExpediteurApi;

import java.io.File;
import java.util.*;

public class ExpediteurApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        ExpediteurApi apiInstance = new ExpediteurApi();
        String correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant corrélé au messageId du message initial
        BodyType818 bodyType818 = ; // BodyType818 | 

        try {
            'String' result = apiInstance.message818(correlationId, bodyType818);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ExpediteurApi#message818");
            e.printStackTrace();
        }
    }
}
import org.openapitools.client.api.ExpediteurApi;

public class ExpediteurApiExample {
    public static void main(String[] args) {
        ExpediteurApi apiInstance = new ExpediteurApi();
        String correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant corrélé au messageId du message initial
        BodyType818 bodyType818 = ; // BodyType818 | 

        try {
            'String' result = apiInstance.message818(correlationId, bodyType818);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ExpediteurApi#message818");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
ExpediteurApi *apiInstance = [[ExpediteurApi alloc] init];
String *correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // Identifiant corrélé au messageId du message initial (default to null)
BodyType818 *bodyType818 = ; //  (optional)

// Endpoint de déclenchement d'un message 818
[apiInstance message818With:correlationId
    bodyType818:bodyType818
              completionHandler: ^('String' output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var ApiFaccediladeGunGamma2VersEdi = require('api_faccedilade_gun__gamma_2_vers_edi');

// Create an instance of the API class
var api = new ApiFaccediladeGunGamma2VersEdi.ExpediteurApi()
var correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // {String} Identifiant corrélé au messageId du message initial
var opts = {
  'bodyType818':  // {BodyType818} 
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.message818(correlationId, opts, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class message818Example
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new ExpediteurApi();
            var correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b;  // String | Identifiant corrélé au messageId du message initial (default to null)
            var bodyType818 = new BodyType818(); // BodyType818 |  (optional) 

            try {
                // Endpoint de déclenchement d'un message 818
                'String' result = apiInstance.message818(correlationId, bodyType818);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling ExpediteurApi.message818: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\ExpediteurApi();
$correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant corrélé au messageId du message initial
$bodyType818 = ; // BodyType818 | 

try {
    $result = $api_instance->message818($correlationId, $bodyType818);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ExpediteurApi->message818: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::ExpediteurApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::ExpediteurApi->new();
my $correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; # String | Identifiant corrélé au messageId du message initial
my $bodyType818 = WWW::OPenAPIClient::Object::BodyType818->new(); # BodyType818 | 

eval {
    my $result = $api_instance->message818(correlationId => $correlationId, bodyType818 => $bodyType818);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ExpediteurApi->message818: $@\n";
}
from __future__ import print_statement
import time
import openapi_client
from openapi_client.rest import ApiException
from pprint import pprint

# Create an instance of the API class
api_instance = openapi_client.ExpediteurApi()
correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b # String | Identifiant corrélé au messageId du message initial (default to null)
bodyType818 =  # BodyType818 |  (optional)

try:
    # Endpoint de déclenchement d'un message 818
    api_response = api_instance.message818(correlationId, bodyType818=bodyType818)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ExpediteurApi->message818: %s\n" % e)
extern crate ExpediteurApi;

pub fn main() {
    let correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String
    let bodyType818 = ; // BodyType818

    let mut context = ExpediteurApi::Context::default();
    let result = client.message818(correlationId, bodyType818, &context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Header parameters
Name Description
correlationId*
String
Identifiant corrélé au messageId du message initial
Required
Body parameters
Name Description
bodyType818

Responses


message819

Endpoint de déclenchement d'un message 819

Endpoint de déclenchement d'un message 819


/819

Usage and SDK Samples

curl -X POST \
 -H "Accept: text/plain" \
 -H "Content-Type: application/json" \
 "http://localhost/819" \
 -d '{
  "AlertOrRejectionOfEADESAD" : {
    "AlertOrRejectionOfEadEsadReason" : [ {
      "ComplementaryInformation" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "AlertOrRejectionOfEadEsadReasonCode" : "33"
    }, {
      "ComplementaryInformation" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "AlertOrRejectionOfEadEsadReasonCode" : "33"
    }, {
      "ComplementaryInformation" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "AlertOrRejectionOfEadEsadReasonCode" : "33"
    }, {
      "ComplementaryInformation" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "AlertOrRejectionOfEadEsadReasonCode" : "33"
    }, {
      "ComplementaryInformation" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "AlertOrRejectionOfEadEsadReasonCode" : "33"
    } ],
    "ExciseMovement" : {
      "AdministrativeReferenceCode" : "09GKL5BWYERZV82CJV0V1",
      "SequenceNumber" : "98"
    },
    "ConsigneeTrader" : {
      "StreetName" : "azertyuio",
      "__language" : "tg",
      "TraderName" : "edcvfr",
      "Traderid" : "aqwxsz",
      "StreetNumber" : "abc",
      "City" : "asxx",
      "Postcode" : "#bp5"
    },
    "Attributes" : {
      "DateAndTimeOfValidationOfAlertRejection" : "2022-01-31T14:05:01"
    },
    "AlertOrRejection" : {
      "DateOfAlertOrRejection" : "2022-01-31T00:00:00.000+00:00",
      "EadEsadRejectedFlag" : null
    }
  }
}'
import org.openapitools.client.*;
import org.openapitools.client.auth.*;
import org.openapitools.client.model.*;
import org.openapitools.client.api.ExpediteurApi;

import java.io.File;
import java.util.*;

public class ExpediteurApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        ExpediteurApi apiInstance = new ExpediteurApi();
        String correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant corrélé au messageId du message initial
        BodyType819 bodyType819 = ; // BodyType819 | 

        try {
            'String' result = apiInstance.message819(correlationId, bodyType819);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ExpediteurApi#message819");
            e.printStackTrace();
        }
    }
}
import org.openapitools.client.api.ExpediteurApi;

public class ExpediteurApiExample {
    public static void main(String[] args) {
        ExpediteurApi apiInstance = new ExpediteurApi();
        String correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant corrélé au messageId du message initial
        BodyType819 bodyType819 = ; // BodyType819 | 

        try {
            'String' result = apiInstance.message819(correlationId, bodyType819);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ExpediteurApi#message819");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
ExpediteurApi *apiInstance = [[ExpediteurApi alloc] init];
String *correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // Identifiant corrélé au messageId du message initial (default to null)
BodyType819 *bodyType819 = ; //  (optional)

// Endpoint de déclenchement d'un message 819
[apiInstance message819With:correlationId
    bodyType819:bodyType819
              completionHandler: ^('String' output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var ApiFaccediladeGunGamma2VersEdi = require('api_faccedilade_gun__gamma_2_vers_edi');

// Create an instance of the API class
var api = new ApiFaccediladeGunGamma2VersEdi.ExpediteurApi()
var correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // {String} Identifiant corrélé au messageId du message initial
var opts = {
  'bodyType819':  // {BodyType819} 
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.message819(correlationId, opts, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class message819Example
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new ExpediteurApi();
            var correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b;  // String | Identifiant corrélé au messageId du message initial (default to null)
            var bodyType819 = new BodyType819(); // BodyType819 |  (optional) 

            try {
                // Endpoint de déclenchement d'un message 819
                'String' result = apiInstance.message819(correlationId, bodyType819);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling ExpediteurApi.message819: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\ExpediteurApi();
$correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant corrélé au messageId du message initial
$bodyType819 = ; // BodyType819 | 

try {
    $result = $api_instance->message819($correlationId, $bodyType819);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ExpediteurApi->message819: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::ExpediteurApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::ExpediteurApi->new();
my $correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; # String | Identifiant corrélé au messageId du message initial
my $bodyType819 = WWW::OPenAPIClient::Object::BodyType819->new(); # BodyType819 | 

eval {
    my $result = $api_instance->message819(correlationId => $correlationId, bodyType819 => $bodyType819);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ExpediteurApi->message819: $@\n";
}
from __future__ import print_statement
import time
import openapi_client
from openapi_client.rest import ApiException
from pprint import pprint

# Create an instance of the API class
api_instance = openapi_client.ExpediteurApi()
correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b # String | Identifiant corrélé au messageId du message initial (default to null)
bodyType819 =  # BodyType819 |  (optional)

try:
    # Endpoint de déclenchement d'un message 819
    api_response = api_instance.message819(correlationId, bodyType819=bodyType819)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ExpediteurApi->message819: %s\n" % e)
extern crate ExpediteurApi;

pub fn main() {
    let correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String
    let bodyType819 = ; // BodyType819

    let mut context = ExpediteurApi::Context::default();
    let result = client.message819(correlationId, bodyType819, &context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Header parameters
Name Description
correlationId*
String
Identifiant corrélé au messageId du message initial
Required
Body parameters
Name Description
bodyType819

Responses


message829

Endpoint de déclenchement d'un message 829

Endpoint de déclenchement d'un message 829


/829

Usage and SDK Samples

curl -X POST \
 -H "Accept: text/plain" \
 -H "Content-Type: application/json" \
 "http://localhost/829" \
 -d '{
  "NotificationOfAcceptedExport" : {
    "ExportPlaceCustomsOffice" : {
      "ReferenceNumber" : "BWgnQuPY"
    },
    "ExciseMovement" : [ {
      "AdministrativeReferenceCode" : "09GKL5BWYERZV82CJV0V1",
      "SequenceNumber" : "98",
      "ExportDeclarationAcceptanceOrGoodsReleasedForExport" : null
    }, {
      "AdministrativeReferenceCode" : "09GKL5BWYERZV82CJV0V1",
      "SequenceNumber" : "98",
      "ExportDeclarationAcceptanceOrGoodsReleasedForExport" : null
    }, {
      "AdministrativeReferenceCode" : "09GKL5BWYERZV82CJV0V1",
      "SequenceNumber" : "98",
      "ExportDeclarationAcceptanceOrGoodsReleasedForExport" : null
    }, {
      "AdministrativeReferenceCode" : "09GKL5BWYERZV82CJV0V1",
      "SequenceNumber" : "98",
      "ExportDeclarationAcceptanceOrGoodsReleasedForExport" : null
    }, {
      "AdministrativeReferenceCode" : "09GKL5BWYERZV82CJV0V1",
      "SequenceNumber" : "98",
      "ExportDeclarationAcceptanceOrGoodsReleasedForExport" : null
    } ],
    "ConsigneeTrader" : {
      "StreetName" : "azertyuio",
      "__language" : "tg",
      "TraderName" : "edcvfr",
      "EoriNumber" : "FR0123456789",
      "Traderid" : "aqwxsz",
      "StreetNumber" : "abc",
      "City" : "asxx",
      "Postcode" : "#bp5"
    },
    "ExportDeclarationAcceptanceRelease" : {
      "DocumentReferenceNumber" : "[4X3S!U[0z$+f",
      "DateOfAcceptance" : "2022-01-31T00:00:00.000+00:00",
      "DateOfRelease" : "2022-01-31T00:00:00.000+00:00",
      "ReferenceNumberOfSenderCustomsOffice" : "BWgnQuPY",
      "IdentificationOfSenderCustomsOfficer" : "azertyui"
    },
    "Attributes" : {
      "DateAndTimeOfIssuance" : "2022-01-31T14:05:01"
    }
  }
}'
import org.openapitools.client.*;
import org.openapitools.client.auth.*;
import org.openapitools.client.model.*;
import org.openapitools.client.api.ExpediteurApi;

import java.io.File;
import java.util.*;

public class ExpediteurApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        ExpediteurApi apiInstance = new ExpediteurApi();
        String messageId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant du message initial, sa valeur sera égale à celle du corrélé id du message en réponse.
        BodyType829 bodyType829 = ; // BodyType829 | 

        try {
            'String' result = apiInstance.message829(messageId, bodyType829);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ExpediteurApi#message829");
            e.printStackTrace();
        }
    }
}
import org.openapitools.client.api.ExpediteurApi;

public class ExpediteurApiExample {
    public static void main(String[] args) {
        ExpediteurApi apiInstance = new ExpediteurApi();
        String messageId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant du message initial, sa valeur sera égale à celle du corrélé id du message en réponse.
        BodyType829 bodyType829 = ; // BodyType829 | 

        try {
            'String' result = apiInstance.message829(messageId, bodyType829);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ExpediteurApi#message829");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
ExpediteurApi *apiInstance = [[ExpediteurApi alloc] init];
String *messageId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // Identifiant du message initial, sa valeur sera égale à celle du corrélé id du message en réponse. (default to null)
BodyType829 *bodyType829 = ; //  (optional)

// Endpoint de déclenchement d'un message 829
[apiInstance message829With:messageId
    bodyType829:bodyType829
              completionHandler: ^('String' output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var ApiFaccediladeGunGamma2VersEdi = require('api_faccedilade_gun__gamma_2_vers_edi');

// Create an instance of the API class
var api = new ApiFaccediladeGunGamma2VersEdi.ExpediteurApi()
var messageId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // {String} Identifiant du message initial, sa valeur sera égale à celle du corrélé id du message en réponse.
var opts = {
  'bodyType829':  // {BodyType829} 
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.message829(messageId, opts, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class message829Example
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new ExpediteurApi();
            var messageId = 370b56ea-37e4-497b-9d03-adec0da9cf9b;  // String | Identifiant du message initial, sa valeur sera égale à celle du corrélé id du message en réponse. (default to null)
            var bodyType829 = new BodyType829(); // BodyType829 |  (optional) 

            try {
                // Endpoint de déclenchement d'un message 829
                'String' result = apiInstance.message829(messageId, bodyType829);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling ExpediteurApi.message829: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\ExpediteurApi();
$messageId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant du message initial, sa valeur sera égale à celle du corrélé id du message en réponse.
$bodyType829 = ; // BodyType829 | 

try {
    $result = $api_instance->message829($messageId, $bodyType829);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ExpediteurApi->message829: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::ExpediteurApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::ExpediteurApi->new();
my $messageId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; # String | Identifiant du message initial, sa valeur sera égale à celle du corrélé id du message en réponse.
my $bodyType829 = WWW::OPenAPIClient::Object::BodyType829->new(); # BodyType829 | 

eval {
    my $result = $api_instance->message829(messageId => $messageId, bodyType829 => $bodyType829);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ExpediteurApi->message829: $@\n";
}
from __future__ import print_statement
import time
import openapi_client
from openapi_client.rest import ApiException
from pprint import pprint

# Create an instance of the API class
api_instance = openapi_client.ExpediteurApi()
messageId = 370b56ea-37e4-497b-9d03-adec0da9cf9b # String | Identifiant du message initial, sa valeur sera égale à celle du corrélé id du message en réponse. (default to null)
bodyType829 =  # BodyType829 |  (optional)

try:
    # Endpoint de déclenchement d'un message 829
    api_response = api_instance.message829(messageId, bodyType829=bodyType829)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ExpediteurApi->message829: %s\n" % e)
extern crate ExpediteurApi;

pub fn main() {
    let messageId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String
    let bodyType829 = ; // BodyType829

    let mut context = ExpediteurApi::Context::default();
    let result = client.message829(messageId, bodyType829, &context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Header parameters
Name Description
messageId*
String
Identifiant du message initial, sa valeur sera égale à celle du corrélé id du message en réponse.
Required
Body parameters
Name Description
bodyType829

Responses


message836

Endpoint de déclenchement d'un message 836

Endpoint de déclenchement d'un message 836


/836

Usage and SDK Samples

curl -X POST \
 -H "Accept: text/plain" \
 -H "Content-Type: application/json" \
 "http://localhost/836" \
 -d '{
  "ExportDeclarationInvalidationNotificationToMSAOfDispatchConsignor" : {
    "ExciseMovement" : [ {
      "CustomsOfficeOfExport" : {
        "ReferenceNumber" : "BWgnQuPY"
      },
      "AdministrativeReferenceCode" : "09GKL5BWYERZV82CJV0V1",
      "SequenceNumber" : "98",
      "GoodsShipment" : {
        "PreviousDocument" : [ {
          "Type" : "azer",
          "ReferenceNumber" : "ReferenceNumber",
          "SequenceNumber" : "98"
        }, {
          "Type" : "azer",
          "ReferenceNumber" : "ReferenceNumber",
          "SequenceNumber" : "98"
        }, {
          "Type" : "azer",
          "ReferenceNumber" : "ReferenceNumber",
          "SequenceNumber" : "98"
        }, {
          "Type" : "azer",
          "ReferenceNumber" : "ReferenceNumber",
          "SequenceNumber" : "98"
        }, {
          "Type" : "azer",
          "ReferenceNumber" : "ReferenceNumber",
          "SequenceNumber" : "98"
        } ]
      },
      "MsaOfExport" : {
        "CountryCode" : "Tg"
      },
      "ExportOperation" : {
        "InvalidationDate" : "2022-01-31T00:00:00.000+00:00",
        "Mrn" : "azertyuiopqsdfghjk"
      }
    }, {
      "CustomsOfficeOfExport" : {
        "ReferenceNumber" : "BWgnQuPY"
      },
      "AdministrativeReferenceCode" : "09GKL5BWYERZV82CJV0V1",
      "SequenceNumber" : "98",
      "GoodsShipment" : {
        "PreviousDocument" : [ {
          "Type" : "azer",
          "ReferenceNumber" : "ReferenceNumber",
          "SequenceNumber" : "98"
        }, {
          "Type" : "azer",
          "ReferenceNumber" : "ReferenceNumber",
          "SequenceNumber" : "98"
        }, {
          "Type" : "azer",
          "ReferenceNumber" : "ReferenceNumber",
          "SequenceNumber" : "98"
        }, {
          "Type" : "azer",
          "ReferenceNumber" : "ReferenceNumber",
          "SequenceNumber" : "98"
        }, {
          "Type" : "azer",
          "ReferenceNumber" : "ReferenceNumber",
          "SequenceNumber" : "98"
        } ]
      },
      "MsaOfExport" : {
        "CountryCode" : "Tg"
      },
      "ExportOperation" : {
        "InvalidationDate" : "2022-01-31T00:00:00.000+00:00",
        "Mrn" : "azertyuiopqsdfghjk"
      }
    }, {
      "CustomsOfficeOfExport" : {
        "ReferenceNumber" : "BWgnQuPY"
      },
      "AdministrativeReferenceCode" : "09GKL5BWYERZV82CJV0V1",
      "SequenceNumber" : "98",
      "GoodsShipment" : {
        "PreviousDocument" : [ {
          "Type" : "azer",
          "ReferenceNumber" : "ReferenceNumber",
          "SequenceNumber" : "98"
        }, {
          "Type" : "azer",
          "ReferenceNumber" : "ReferenceNumber",
          "SequenceNumber" : "98"
        }, {
          "Type" : "azer",
          "ReferenceNumber" : "ReferenceNumber",
          "SequenceNumber" : "98"
        }, {
          "Type" : "azer",
          "ReferenceNumber" : "ReferenceNumber",
          "SequenceNumber" : "98"
        }, {
          "Type" : "azer",
          "ReferenceNumber" : "ReferenceNumber",
          "SequenceNumber" : "98"
        } ]
      },
      "MsaOfExport" : {
        "CountryCode" : "Tg"
      },
      "ExportOperation" : {
        "InvalidationDate" : "2022-01-31T00:00:00.000+00:00",
        "Mrn" : "azertyuiopqsdfghjk"
      }
    }, {
      "CustomsOfficeOfExport" : {
        "ReferenceNumber" : "BWgnQuPY"
      },
      "AdministrativeReferenceCode" : "09GKL5BWYERZV82CJV0V1",
      "SequenceNumber" : "98",
      "GoodsShipment" : {
        "PreviousDocument" : [ {
          "Type" : "azer",
          "ReferenceNumber" : "ReferenceNumber",
          "SequenceNumber" : "98"
        }, {
          "Type" : "azer",
          "ReferenceNumber" : "ReferenceNumber",
          "SequenceNumber" : "98"
        }, {
          "Type" : "azer",
          "ReferenceNumber" : "ReferenceNumber",
          "SequenceNumber" : "98"
        }, {
          "Type" : "azer",
          "ReferenceNumber" : "ReferenceNumber",
          "SequenceNumber" : "98"
        }, {
          "Type" : "azer",
          "ReferenceNumber" : "ReferenceNumber",
          "SequenceNumber" : "98"
        } ]
      },
      "MsaOfExport" : {
        "CountryCode" : "Tg"
      },
      "ExportOperation" : {
        "InvalidationDate" : "2022-01-31T00:00:00.000+00:00",
        "Mrn" : "azertyuiopqsdfghjk"
      }
    }, {
      "CustomsOfficeOfExport" : {
        "ReferenceNumber" : "BWgnQuPY"
      },
      "AdministrativeReferenceCode" : "09GKL5BWYERZV82CJV0V1",
      "SequenceNumber" : "98",
      "GoodsShipment" : {
        "PreviousDocument" : [ {
          "Type" : "azer",
          "ReferenceNumber" : "ReferenceNumber",
          "SequenceNumber" : "98"
        }, {
          "Type" : "azer",
          "ReferenceNumber" : "ReferenceNumber",
          "SequenceNumber" : "98"
        }, {
          "Type" : "azer",
          "ReferenceNumber" : "ReferenceNumber",
          "SequenceNumber" : "98"
        }, {
          "Type" : "azer",
          "ReferenceNumber" : "ReferenceNumber",
          "SequenceNumber" : "98"
        }, {
          "Type" : "azer",
          "ReferenceNumber" : "ReferenceNumber",
          "SequenceNumber" : "98"
        } ]
      },
      "MsaOfExport" : {
        "CountryCode" : "Tg"
      },
      "ExportOperation" : {
        "InvalidationDate" : "2022-01-31T00:00:00.000+00:00",
        "Mrn" : "azertyuiopqsdfghjk"
      }
    } ]
  }
}'
import org.openapitools.client.*;
import org.openapitools.client.auth.*;
import org.openapitools.client.model.*;
import org.openapitools.client.api.ExpediteurApi;

import java.io.File;
import java.util.*;

public class ExpediteurApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        ExpediteurApi apiInstance = new ExpediteurApi();
        String messageId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant du message initial, sa valeur sera égale à celle du corrélé id du message en réponse.
        BodyType836 bodyType836 = ; // BodyType836 | 

        try {
            'String' result = apiInstance.message836(messageId, bodyType836);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ExpediteurApi#message836");
            e.printStackTrace();
        }
    }
}
import org.openapitools.client.api.ExpediteurApi;

public class ExpediteurApiExample {
    public static void main(String[] args) {
        ExpediteurApi apiInstance = new ExpediteurApi();
        String messageId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant du message initial, sa valeur sera égale à celle du corrélé id du message en réponse.
        BodyType836 bodyType836 = ; // BodyType836 | 

        try {
            'String' result = apiInstance.message836(messageId, bodyType836);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ExpediteurApi#message836");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
ExpediteurApi *apiInstance = [[ExpediteurApi alloc] init];
String *messageId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // Identifiant du message initial, sa valeur sera égale à celle du corrélé id du message en réponse. (default to null)
BodyType836 *bodyType836 = ; //  (optional)

// Endpoint de déclenchement d'un message 836
[apiInstance message836With:messageId
    bodyType836:bodyType836
              completionHandler: ^('String' output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var ApiFaccediladeGunGamma2VersEdi = require('api_faccedilade_gun__gamma_2_vers_edi');

// Create an instance of the API class
var api = new ApiFaccediladeGunGamma2VersEdi.ExpediteurApi()
var messageId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // {String} Identifiant du message initial, sa valeur sera égale à celle du corrélé id du message en réponse.
var opts = {
  'bodyType836':  // {BodyType836} 
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.message836(messageId, opts, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class message836Example
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new ExpediteurApi();
            var messageId = 370b56ea-37e4-497b-9d03-adec0da9cf9b;  // String | Identifiant du message initial, sa valeur sera égale à celle du corrélé id du message en réponse. (default to null)
            var bodyType836 = new BodyType836(); // BodyType836 |  (optional) 

            try {
                // Endpoint de déclenchement d'un message 836
                'String' result = apiInstance.message836(messageId, bodyType836);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling ExpediteurApi.message836: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\ExpediteurApi();
$messageId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant du message initial, sa valeur sera égale à celle du corrélé id du message en réponse.
$bodyType836 = ; // BodyType836 | 

try {
    $result = $api_instance->message836($messageId, $bodyType836);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ExpediteurApi->message836: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::ExpediteurApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::ExpediteurApi->new();
my $messageId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; # String | Identifiant du message initial, sa valeur sera égale à celle du corrélé id du message en réponse.
my $bodyType836 = WWW::OPenAPIClient::Object::BodyType836->new(); # BodyType836 | 

eval {
    my $result = $api_instance->message836(messageId => $messageId, bodyType836 => $bodyType836);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ExpediteurApi->message836: $@\n";
}
from __future__ import print_statement
import time
import openapi_client
from openapi_client.rest import ApiException
from pprint import pprint

# Create an instance of the API class
api_instance = openapi_client.ExpediteurApi()
messageId = 370b56ea-37e4-497b-9d03-adec0da9cf9b # String | Identifiant du message initial, sa valeur sera égale à celle du corrélé id du message en réponse. (default to null)
bodyType836 =  # BodyType836 |  (optional)

try:
    # Endpoint de déclenchement d'un message 836
    api_response = api_instance.message836(messageId, bodyType836=bodyType836)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ExpediteurApi->message836: %s\n" % e)
extern crate ExpediteurApi;

pub fn main() {
    let messageId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String
    let bodyType836 = ; // BodyType836

    let mut context = ExpediteurApi::Context::default();
    let result = client.message836(messageId, bodyType836, &context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Header parameters
Name Description
messageId*
String
Identifiant du message initial, sa valeur sera égale à celle du corrélé id du message en réponse.
Required
Body parameters
Name Description
bodyType836

Responses


message837

Endpoint de déclenchement d'un message 837

Endpoint de déclenchement d'un message 837


/837

Usage and SDK Samples

curl -X POST \
 -H "Accept: text/plain" \
 -H "Content-Type: application/json" \
 "http://localhost/837" \
 -d '{
  "ExplanationOnDelayForDelivery" : {
    "ExciseMovement" : {
      "AdministrativeReferenceCode" : "09GKL5BWYERZV82CJV0V1",
      "SequenceNumber" : "98"
    },
    "Attributes" : {
      "MessageRole" : null,
      "ComplementaryInformation" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "TypeDeclarant" : null,
      "ExplanationCode" : "33"
    }
  }
}'
import org.openapitools.client.*;
import org.openapitools.client.auth.*;
import org.openapitools.client.model.*;
import org.openapitools.client.api.ExpediteurApi;

import java.io.File;
import java.util.*;

public class ExpediteurApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        ExpediteurApi apiInstance = new ExpediteurApi();
        String correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant corrélé au messageId du message initial
        BodyType837 bodyType837 = ; // BodyType837 | 

        try {
            'String' result = apiInstance.message837(correlationId, bodyType837);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ExpediteurApi#message837");
            e.printStackTrace();
        }
    }
}
import org.openapitools.client.api.ExpediteurApi;

public class ExpediteurApiExample {
    public static void main(String[] args) {
        ExpediteurApi apiInstance = new ExpediteurApi();
        String correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant corrélé au messageId du message initial
        BodyType837 bodyType837 = ; // BodyType837 | 

        try {
            'String' result = apiInstance.message837(correlationId, bodyType837);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ExpediteurApi#message837");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
ExpediteurApi *apiInstance = [[ExpediteurApi alloc] init];
String *correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // Identifiant corrélé au messageId du message initial (default to null)
BodyType837 *bodyType837 = ; //  (optional)

// Endpoint de déclenchement d'un message 837
[apiInstance message837With:correlationId
    bodyType837:bodyType837
              completionHandler: ^('String' output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var ApiFaccediladeGunGamma2VersEdi = require('api_faccedilade_gun__gamma_2_vers_edi');

// Create an instance of the API class
var api = new ApiFaccediladeGunGamma2VersEdi.ExpediteurApi()
var correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // {String} Identifiant corrélé au messageId du message initial
var opts = {
  'bodyType837':  // {BodyType837} 
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.message837(correlationId, opts, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class message837Example
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new ExpediteurApi();
            var correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b;  // String | Identifiant corrélé au messageId du message initial (default to null)
            var bodyType837 = new BodyType837(); // BodyType837 |  (optional) 

            try {
                // Endpoint de déclenchement d'un message 837
                'String' result = apiInstance.message837(correlationId, bodyType837);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling ExpediteurApi.message837: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\ExpediteurApi();
$correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant corrélé au messageId du message initial
$bodyType837 = ; // BodyType837 | 

try {
    $result = $api_instance->message837($correlationId, $bodyType837);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ExpediteurApi->message837: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::ExpediteurApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::ExpediteurApi->new();
my $correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; # String | Identifiant corrélé au messageId du message initial
my $bodyType837 = WWW::OPenAPIClient::Object::BodyType837->new(); # BodyType837 | 

eval {
    my $result = $api_instance->message837(correlationId => $correlationId, bodyType837 => $bodyType837);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ExpediteurApi->message837: $@\n";
}
from __future__ import print_statement
import time
import openapi_client
from openapi_client.rest import ApiException
from pprint import pprint

# Create an instance of the API class
api_instance = openapi_client.ExpediteurApi()
correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b # String | Identifiant corrélé au messageId du message initial (default to null)
bodyType837 =  # BodyType837 |  (optional)

try:
    # Endpoint de déclenchement d'un message 837
    api_response = api_instance.message837(correlationId, bodyType837=bodyType837)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ExpediteurApi->message837: %s\n" % e)
extern crate ExpediteurApi;

pub fn main() {
    let correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String
    let bodyType837 = ; // BodyType837

    let mut context = ExpediteurApi::Context::default();
    let result = client.message837(correlationId, bodyType837, &context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Header parameters
Name Description
correlationId*
String
Identifiant corrélé au messageId du message initial
Required
Body parameters
Name Description
bodyType837

Responses


message839

Endpoint de déclenchement d'un message 839

Endpoint de déclenchement d'un message 839


/839

Usage and SDK Samples

curl -X POST \
 -H "Accept: text/plain" \
 -H "Content-Type: application/json" \
 "http://localhost/839" \
 -d '{
  "RefusalByCustoms" : {
    "Rejection" : {
      "RejectionDateAndTime" : "2022-01-31T14:05:01",
      "RejectionReasonCode" : null
    },
    "ExportDeclarationInformation" : {
      "DocumentReferenceNumber" : "[4X3S!U[0z$+f",
      "LocalReferenceNumber" : "~00J]fkDK1(VGkj>TeJ6",
      "NegativeCrosscheckValidationResults" : [ {
        "UbrCrosscheckResult" : [ {
          "CombinedNomenclatureCodeCrosscheckResult" : {
            "ValidationResult" : null,
            "RejectionReason" : "azerty"
          },
          "AdministrativeReferenceCode" : "09GKL5BWYERZV82CJV0V1",
          "NetMassCrosscheckResult" : {
            "ValidationResult" : null,
            "RejectionReason" : "azerty"
          },
          "DiagnosisCode" : null,
          "BodyRecordUniqueReference" : "553",
          "ValidationResult" : null,
          "RejectionReason" : "azerty"
        }, {
          "CombinedNomenclatureCodeCrosscheckResult" : {
            "ValidationResult" : null,
            "RejectionReason" : "azerty"
          },
          "AdministrativeReferenceCode" : "09GKL5BWYERZV82CJV0V1",
          "NetMassCrosscheckResult" : {
            "ValidationResult" : null,
            "RejectionReason" : "azerty"
          },
          "DiagnosisCode" : null,
          "BodyRecordUniqueReference" : "553",
          "ValidationResult" : null,
          "RejectionReason" : "azerty"
        }, {
          "CombinedNomenclatureCodeCrosscheckResult" : {
            "ValidationResult" : null,
            "RejectionReason" : "azerty"
          },
          "AdministrativeReferenceCode" : "09GKL5BWYERZV82CJV0V1",
          "NetMassCrosscheckResult" : {
            "ValidationResult" : null,
            "RejectionReason" : "azerty"
          },
          "DiagnosisCode" : null,
          "BodyRecordUniqueReference" : "553",
          "ValidationResult" : null,
          "RejectionReason" : "azerty"
        }, {
          "CombinedNomenclatureCodeCrosscheckResult" : {
            "ValidationResult" : null,
            "RejectionReason" : "azerty"
          },
          "AdministrativeReferenceCode" : "09GKL5BWYERZV82CJV0V1",
          "NetMassCrosscheckResult" : {
            "ValidationResult" : null,
            "RejectionReason" : "azerty"
          },
          "DiagnosisCode" : null,
          "BodyRecordUniqueReference" : "553",
          "ValidationResult" : null,
          "RejectionReason" : "azerty"
        }, {
          "CombinedNomenclatureCodeCrosscheckResult" : {
            "ValidationResult" : null,
            "RejectionReason" : "azerty"
          },
          "AdministrativeReferenceCode" : "09GKL5BWYERZV82CJV0V1",
          "NetMassCrosscheckResult" : {
            "ValidationResult" : null,
            "RejectionReason" : "azerty"
          },
          "DiagnosisCode" : null,
          "BodyRecordUniqueReference" : "553",
          "ValidationResult" : null,
          "RejectionReason" : "azerty"
        } ]
      }, {
        "UbrCrosscheckResult" : [ {
          "CombinedNomenclatureCodeCrosscheckResult" : {
            "ValidationResult" : null,
            "RejectionReason" : "azerty"
          },
          "AdministrativeReferenceCode" : "09GKL5BWYERZV82CJV0V1",
          "NetMassCrosscheckResult" : {
            "ValidationResult" : null,
            "RejectionReason" : "azerty"
          },
          "DiagnosisCode" : null,
          "BodyRecordUniqueReference" : "553",
          "ValidationResult" : null,
          "RejectionReason" : "azerty"
        }, {
          "CombinedNomenclatureCodeCrosscheckResult" : {
            "ValidationResult" : null,
            "RejectionReason" : "azerty"
          },
          "AdministrativeReferenceCode" : "09GKL5BWYERZV82CJV0V1",
          "NetMassCrosscheckResult" : {
            "ValidationResult" : null,
            "RejectionReason" : "azerty"
          },
          "DiagnosisCode" : null,
          "BodyRecordUniqueReference" : "553",
          "ValidationResult" : null,
          "RejectionReason" : "azerty"
        }, {
          "CombinedNomenclatureCodeCrosscheckResult" : {
            "ValidationResult" : null,
            "RejectionReason" : "azerty"
          },
          "AdministrativeReferenceCode" : "09GKL5BWYERZV82CJV0V1",
          "NetMassCrosscheckResult" : {
            "ValidationResult" : null,
            "RejectionReason" : "azerty"
          },
          "DiagnosisCode" : null,
          "BodyRecordUniqueReference" : "553",
          "ValidationResult" : null,
          "RejectionReason" : "azerty"
        }, {
          "CombinedNomenclatureCodeCrosscheckResult" : {
            "ValidationResult" : null,
            "RejectionReason" : "azerty"
          },
          "AdministrativeReferenceCode" : "09GKL5BWYERZV82CJV0V1",
          "NetMassCrosscheckResult" : {
            "ValidationResult" : null,
            "RejectionReason" : "azerty"
          },
          "DiagnosisCode" : null,
          "BodyRecordUniqueReference" : "553",
          "ValidationResult" : null,
          "RejectionReason" : "azerty"
        }, {
          "CombinedNomenclatureCodeCrosscheckResult" : {
            "ValidationResult" : null,
            "RejectionReason" : "azerty"
          },
          "AdministrativeReferenceCode" : "09GKL5BWYERZV82CJV0V1",
          "NetMassCrosscheckResult" : {
            "ValidationResult" : null,
            "RejectionReason" : "azerty"
          },
          "DiagnosisCode" : null,
          "BodyRecordUniqueReference" : "553",
          "ValidationResult" : null,
          "RejectionReason" : "azerty"
        } ]
      }, {
        "UbrCrosscheckResult" : [ {
          "CombinedNomenclatureCodeCrosscheckResult" : {
            "ValidationResult" : null,
            "RejectionReason" : "azerty"
          },
          "AdministrativeReferenceCode" : "09GKL5BWYERZV82CJV0V1",
          "NetMassCrosscheckResult" : {
            "ValidationResult" : null,
            "RejectionReason" : "azerty"
          },
          "DiagnosisCode" : null,
          "BodyRecordUniqueReference" : "553",
          "ValidationResult" : null,
          "RejectionReason" : "azerty"
        }, {
          "CombinedNomenclatureCodeCrosscheckResult" : {
            "ValidationResult" : null,
            "RejectionReason" : "azerty"
          },
          "AdministrativeReferenceCode" : "09GKL5BWYERZV82CJV0V1",
          "NetMassCrosscheckResult" : {
            "ValidationResult" : null,
            "RejectionReason" : "azerty"
          },
          "DiagnosisCode" : null,
          "BodyRecordUniqueReference" : "553",
          "ValidationResult" : null,
          "RejectionReason" : "azerty"
        }, {
          "CombinedNomenclatureCodeCrosscheckResult" : {
            "ValidationResult" : null,
            "RejectionReason" : "azerty"
          },
          "AdministrativeReferenceCode" : "09GKL5BWYERZV82CJV0V1",
          "NetMassCrosscheckResult" : {
            "ValidationResult" : null,
            "RejectionReason" : "azerty"
          },
          "DiagnosisCode" : null,
          "BodyRecordUniqueReference" : "553",
          "ValidationResult" : null,
          "RejectionReason" : "azerty"
        }, {
          "CombinedNomenclatureCodeCrosscheckResult" : {
            "ValidationResult" : null,
            "RejectionReason" : "azerty"
          },
          "AdministrativeReferenceCode" : "09GKL5BWYERZV82CJV0V1",
          "NetMassCrosscheckResult" : {
            "ValidationResult" : null,
            "RejectionReason" : "azerty"
          },
          "DiagnosisCode" : null,
          "BodyRecordUniqueReference" : "553",
          "ValidationResult" : null,
          "RejectionReason" : "azerty"
        }, {
          "CombinedNomenclatureCodeCrosscheckResult" : {
            "ValidationResult" : null,
            "RejectionReason" : "azerty"
          },
          "AdministrativeReferenceCode" : "09GKL5BWYERZV82CJV0V1",
          "NetMassCrosscheckResult" : {
            "ValidationResult" : null,
            "RejectionReason" : "azerty"
          },
          "DiagnosisCode" : null,
          "BodyRecordUniqueReference" : "553",
          "ValidationResult" : null,
          "RejectionReason" : "azerty"
        } ]
      }, {
        "UbrCrosscheckResult" : [ {
          "CombinedNomenclatureCodeCrosscheckResult" : {
            "ValidationResult" : null,
            "RejectionReason" : "azerty"
          },
          "AdministrativeReferenceCode" : "09GKL5BWYERZV82CJV0V1",
          "NetMassCrosscheckResult" : {
            "ValidationResult" : null,
            "RejectionReason" : "azerty"
          },
          "DiagnosisCode" : null,
          "BodyRecordUniqueReference" : "553",
          "ValidationResult" : null,
          "RejectionReason" : "azerty"
        }, {
          "CombinedNomenclatureCodeCrosscheckResult" : {
            "ValidationResult" : null,
            "RejectionReason" : "azerty"
          },
          "AdministrativeReferenceCode" : "09GKL5BWYERZV82CJV0V1",
          "NetMassCrosscheckResult" : {
            "ValidationResult" : null,
            "RejectionReason" : "azerty"
          },
          "DiagnosisCode" : null,
          "BodyRecordUniqueReference" : "553",
          "ValidationResult" : null,
          "RejectionReason" : "azerty"
        }, {
          "CombinedNomenclatureCodeCrosscheckResult" : {
            "ValidationResult" : null,
            "RejectionReason" : "azerty"
          },
          "AdministrativeReferenceCode" : "09GKL5BWYERZV82CJV0V1",
          "NetMassCrosscheckResult" : {
            "ValidationResult" : null,
            "RejectionReason" : "azerty"
          },
          "DiagnosisCode" : null,
          "BodyRecordUniqueReference" : "553",
          "ValidationResult" : null,
          "RejectionReason" : "azerty"
        }, {
          "CombinedNomenclatureCodeCrosscheckResult" : {
            "ValidationResult" : null,
            "RejectionReason" : "azerty"
          },
          "AdministrativeReferenceCode" : "09GKL5BWYERZV82CJV0V1",
          "NetMassCrosscheckResult" : {
            "ValidationResult" : null,
            "RejectionReason" : "azerty"
          },
          "DiagnosisCode" : null,
          "BodyRecordUniqueReference" : "553",
          "ValidationResult" : null,
          "RejectionReason" : "azerty"
        }, {
          "CombinedNomenclatureCodeCrosscheckResult" : {
            "ValidationResult" : null,
            "RejectionReason" : "azerty"
          },
          "AdministrativeReferenceCode" : "09GKL5BWYERZV82CJV0V1",
          "NetMassCrosscheckResult" : {
            "ValidationResult" : null,
            "RejectionReason" : "azerty"
          },
          "DiagnosisCode" : null,
          "BodyRecordUniqueReference" : "553",
          "ValidationResult" : null,
          "RejectionReason" : "azerty"
        } ]
      }, {
        "UbrCrosscheckResult" : [ {
          "CombinedNomenclatureCodeCrosscheckResult" : {
            "ValidationResult" : null,
            "RejectionReason" : "azerty"
          },
          "AdministrativeReferenceCode" : "09GKL5BWYERZV82CJV0V1",
          "NetMassCrosscheckResult" : {
            "ValidationResult" : null,
            "RejectionReason" : "azerty"
          },
          "DiagnosisCode" : null,
          "BodyRecordUniqueReference" : "553",
          "ValidationResult" : null,
          "RejectionReason" : "azerty"
        }, {
          "CombinedNomenclatureCodeCrosscheckResult" : {
            "ValidationResult" : null,
            "RejectionReason" : "azerty"
          },
          "AdministrativeReferenceCode" : "09GKL5BWYERZV82CJV0V1",
          "NetMassCrosscheckResult" : {
            "ValidationResult" : null,
            "RejectionReason" : "azerty"
          },
          "DiagnosisCode" : null,
          "BodyRecordUniqueReference" : "553",
          "ValidationResult" : null,
          "RejectionReason" : "azerty"
        }, {
          "CombinedNomenclatureCodeCrosscheckResult" : {
            "ValidationResult" : null,
            "RejectionReason" : "azerty"
          },
          "AdministrativeReferenceCode" : "09GKL5BWYERZV82CJV0V1",
          "NetMassCrosscheckResult" : {
            "ValidationResult" : null,
            "RejectionReason" : "azerty"
          },
          "DiagnosisCode" : null,
          "BodyRecordUniqueReference" : "553",
          "ValidationResult" : null,
          "RejectionReason" : "azerty"
        }, {
          "CombinedNomenclatureCodeCrosscheckResult" : {
            "ValidationResult" : null,
            "RejectionReason" : "azerty"
          },
          "AdministrativeReferenceCode" : "09GKL5BWYERZV82CJV0V1",
          "NetMassCrosscheckResult" : {
            "ValidationResult" : null,
            "RejectionReason" : "azerty"
          },
          "DiagnosisCode" : null,
          "BodyRecordUniqueReference" : "553",
          "ValidationResult" : null,
          "RejectionReason" : "azerty"
        }, {
          "CombinedNomenclatureCodeCrosscheckResult" : {
            "ValidationResult" : null,
            "RejectionReason" : "azerty"
          },
          "AdministrativeReferenceCode" : "09GKL5BWYERZV82CJV0V1",
          "NetMassCrosscheckResult" : {
            "ValidationResult" : null,
            "RejectionReason" : "azerty"
          },
          "DiagnosisCode" : null,
          "BodyRecordUniqueReference" : "553",
          "ValidationResult" : null,
          "RejectionReason" : "azerty"
        } ]
      } ],
      "NNonDes" : {
        "DocumentReferenceNumber" : "[4X3S!U[0z$+f"
      }
    },
    "ExportPlaceCustomsOffice" : {
      "ReferenceNumber" : "BWgnQuPY"
    },
    "ConsigneeTrader" : {
      "StreetName" : "azertyuio",
      "__language" : "tg",
      "TraderName" : "edcvfr",
      "EoriNumber" : "FR0123456789",
      "StreetNumber" : "abc",
      "City" : "asxx",
      "Postcode" : "#bp5"
    },
    "Attributes" : {
      "DateAndTimeOfIssuance" : "2022-01-31T14:05:01"
    },
    "CEadVal" : [ {
      "AdministrativeReferenceCode" : "09GKL5BWYERZV82CJV0V1",
      "SequenceNumber" : "98"
    }, {
      "AdministrativeReferenceCode" : "09GKL5BWYERZV82CJV0V1",
      "SequenceNumber" : "98"
    }, {
      "AdministrativeReferenceCode" : "09GKL5BWYERZV82CJV0V1",
      "SequenceNumber" : "98"
    }, {
      "AdministrativeReferenceCode" : "09GKL5BWYERZV82CJV0V1",
      "SequenceNumber" : "98"
    }, {
      "AdministrativeReferenceCode" : "09GKL5BWYERZV82CJV0V1",
      "SequenceNumber" : "98"
    } ]
  }
}'
import org.openapitools.client.*;
import org.openapitools.client.auth.*;
import org.openapitools.client.model.*;
import org.openapitools.client.api.ExpediteurApi;

import java.io.File;
import java.util.*;

public class ExpediteurApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        ExpediteurApi apiInstance = new ExpediteurApi();
        String messageId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant du message initial, sa valeur sera égale à celle du corrélé id du message en réponse.
        BodyType839 bodyType839 = ; // BodyType839 | 

        try {
            'String' result = apiInstance.message839(messageId, bodyType839);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ExpediteurApi#message839");
            e.printStackTrace();
        }
    }
}
import org.openapitools.client.api.ExpediteurApi;

public class ExpediteurApiExample {
    public static void main(String[] args) {
        ExpediteurApi apiInstance = new ExpediteurApi();
        String messageId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant du message initial, sa valeur sera égale à celle du corrélé id du message en réponse.
        BodyType839 bodyType839 = ; // BodyType839 | 

        try {
            'String' result = apiInstance.message839(messageId, bodyType839);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ExpediteurApi#message839");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
ExpediteurApi *apiInstance = [[ExpediteurApi alloc] init];
String *messageId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // Identifiant du message initial, sa valeur sera égale à celle du corrélé id du message en réponse. (default to null)
BodyType839 *bodyType839 = ; //  (optional)

// Endpoint de déclenchement d'un message 839
[apiInstance message839With:messageId
    bodyType839:bodyType839
              completionHandler: ^('String' output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var ApiFaccediladeGunGamma2VersEdi = require('api_faccedilade_gun__gamma_2_vers_edi');

// Create an instance of the API class
var api = new ApiFaccediladeGunGamma2VersEdi.ExpediteurApi()
var messageId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // {String} Identifiant du message initial, sa valeur sera égale à celle du corrélé id du message en réponse.
var opts = {
  'bodyType839':  // {BodyType839} 
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.message839(messageId, opts, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class message839Example
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new ExpediteurApi();
            var messageId = 370b56ea-37e4-497b-9d03-adec0da9cf9b;  // String | Identifiant du message initial, sa valeur sera égale à celle du corrélé id du message en réponse. (default to null)
            var bodyType839 = new BodyType839(); // BodyType839 |  (optional) 

            try {
                // Endpoint de déclenchement d'un message 839
                'String' result = apiInstance.message839(messageId, bodyType839);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling ExpediteurApi.message839: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\ExpediteurApi();
$messageId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant du message initial, sa valeur sera égale à celle du corrélé id du message en réponse.
$bodyType839 = ; // BodyType839 | 

try {
    $result = $api_instance->message839($messageId, $bodyType839);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ExpediteurApi->message839: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::ExpediteurApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::ExpediteurApi->new();
my $messageId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; # String | Identifiant du message initial, sa valeur sera égale à celle du corrélé id du message en réponse.
my $bodyType839 = WWW::OPenAPIClient::Object::BodyType839->new(); # BodyType839 | 

eval {
    my $result = $api_instance->message839(messageId => $messageId, bodyType839 => $bodyType839);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ExpediteurApi->message839: $@\n";
}
from __future__ import print_statement
import time
import openapi_client
from openapi_client.rest import ApiException
from pprint import pprint

# Create an instance of the API class
api_instance = openapi_client.ExpediteurApi()
messageId = 370b56ea-37e4-497b-9d03-adec0da9cf9b # String | Identifiant du message initial, sa valeur sera égale à celle du corrélé id du message en réponse. (default to null)
bodyType839 =  # BodyType839 |  (optional)

try:
    # Endpoint de déclenchement d'un message 839
    api_response = api_instance.message839(messageId, bodyType839=bodyType839)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ExpediteurApi->message839: %s\n" % e)
extern crate ExpediteurApi;

pub fn main() {
    let messageId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String
    let bodyType839 = ; // BodyType839

    let mut context = ExpediteurApi::Context::default();
    let result = client.message839(messageId, bodyType839, &context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Header parameters
Name Description
messageId*
String
Identifiant du message initial, sa valeur sera égale à celle du corrélé id du message en réponse.
Required
Body parameters
Name Description
bodyType839

Responses


message840

Endpoint de déclenchement d'un message 840

Endpoint de déclenchement d'un message 840


/840

Usage and SDK Samples

curl -X POST \
 -H "Accept: text/plain" \
 -H "Content-Type: application/json" \
 "http://localhost/840" \
 -d '{
  "EventReportEnvelope" : {
    "NewTransporterTrader" : {
      "StreetName" : "azertyuio",
      "__language" : "tg",
      "TraderName" : "edcvfr",
      "StreetNumber" : "abc",
      "City" : "asxx",
      "VatNumber" : "fredc",
      "Postcode" : "#bp5"
    },
    "TransportDetails" : [ {
      "ComplementaryInformation" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "SealInformation" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "TransportUnitCode" : "29",
      "IdentityOfTransportUnits" : "azertyui",
      "CommercialSealIdentification" : "azertyui"
    }, {
      "ComplementaryInformation" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "SealInformation" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "TransportUnitCode" : "29",
      "IdentityOfTransportUnits" : "azertyui",
      "CommercialSealIdentification" : "azertyui"
    }, {
      "ComplementaryInformation" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "SealInformation" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "TransportUnitCode" : "29",
      "IdentityOfTransportUnits" : "azertyui",
      "CommercialSealIdentification" : "azertyui"
    }, {
      "ComplementaryInformation" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "SealInformation" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "TransportUnitCode" : "29",
      "IdentityOfTransportUnits" : "azertyui",
      "CommercialSealIdentification" : "azertyui"
    }, {
      "ComplementaryInformation" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "SealInformation" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "TransportUnitCode" : "29",
      "IdentityOfTransportUnits" : "azertyui",
      "CommercialSealIdentification" : "azertyui"
    } ],
    "Attributes" : {
      "DateAndTimeOfValidationOfEventReport" : "2022-01-31T14:05:01"
    },
    "HeaderEventReport" : {
      "EventReportNumber" : "YLTBMoad04szv2L5",
      "MemberStateOfEvent" : "TG",
      "MsOfSubmissionEventReportReference" : "azertyui",
      "AdministrativeReferenceCode" : "09GKL5BWYERZV82CJV0V1",
      "SequenceNumber" : "98",
      "ReferenceNumberOfExciseOffice" : "BWgnQuPY"
    },
    "EvidenceOfEvent" : [ {
      "EvidenceTypeCode" : "33",
      "ReferenceOfEvidence" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "EvidenceTypeComplement" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "ImageOfEvidence" : "ImageOfEvidence",
      "IssuingAuthority" : {
        "__language" : "tg",
        "_content_" : "azertyui"
      }
    }, {
      "EvidenceTypeCode" : "33",
      "ReferenceOfEvidence" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "EvidenceTypeComplement" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "ImageOfEvidence" : "ImageOfEvidence",
      "IssuingAuthority" : {
        "__language" : "tg",
        "_content_" : "azertyui"
      }
    }, {
      "EvidenceTypeCode" : "33",
      "ReferenceOfEvidence" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "EvidenceTypeComplement" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "ImageOfEvidence" : "ImageOfEvidence",
      "IssuingAuthority" : {
        "__language" : "tg",
        "_content_" : "azertyui"
      }
    }, {
      "EvidenceTypeCode" : "33",
      "ReferenceOfEvidence" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "EvidenceTypeComplement" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "ImageOfEvidence" : "ImageOfEvidence",
      "IssuingAuthority" : {
        "__language" : "tg",
        "_content_" : "azertyui"
      }
    }, {
      "EvidenceTypeCode" : "33",
      "ReferenceOfEvidence" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "EvidenceTypeComplement" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "ImageOfEvidence" : "ImageOfEvidence",
      "IssuingAuthority" : {
        "__language" : "tg",
        "_content_" : "azertyui"
      }
    } ],
    "BodyEventReport" : [ {
      "EventTypeCode" : "33",
      "AssociatedInformation" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "ObservedShortageOrExcess" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "IndicatorOfShortageOrExcess" : null,
      "BodyRecordUniqueReference" : "553"
    }, {
      "EventTypeCode" : "33",
      "AssociatedInformation" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "ObservedShortageOrExcess" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "IndicatorOfShortageOrExcess" : null,
      "BodyRecordUniqueReference" : "553"
    }, {
      "EventTypeCode" : "33",
      "AssociatedInformation" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "ObservedShortageOrExcess" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "IndicatorOfShortageOrExcess" : null,
      "BodyRecordUniqueReference" : "553"
    }, {
      "EventTypeCode" : "33",
      "AssociatedInformation" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "ObservedShortageOrExcess" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "IndicatorOfShortageOrExcess" : null,
      "BodyRecordUniqueReference" : "553"
    }, {
      "EventTypeCode" : "33",
      "AssociatedInformation" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "ObservedShortageOrExcess" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "IndicatorOfShortageOrExcess" : null,
      "BodyRecordUniqueReference" : "553"
    } ],
    "EventReport" : {
      "PlaceOfEvent" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "SubmittingPersonComplement" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "Comments" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "ExciseOfficerIdentification" : "azertyui",
      "SubmittingPerson" : "azertyui",
      "DateOfEvent" : "2022-01-31T00:00:00.000+00:00",
      "SubmittingPersonCode" : "33",
      "ChangedTransportArrangement" : null
    },
    "NewTransportArrangerTrader" : {
      "StreetName" : "azertyuio",
      "__language" : "tg",
      "TraderName" : "edcvfr",
      "StreetNumber" : "abc",
      "City" : "asxx",
      "VatNumber" : "fredc",
      "Postcode" : "#bp5"
    }
  }
}'
import org.openapitools.client.*;
import org.openapitools.client.auth.*;
import org.openapitools.client.model.*;
import org.openapitools.client.api.ExpediteurApi;

import java.io.File;
import java.util.*;

public class ExpediteurApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        ExpediteurApi apiInstance = new ExpediteurApi();
        BodyType840 bodyType840 = ; // BodyType840 | 

        try {
            'String' result = apiInstance.message840(bodyType840);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ExpediteurApi#message840");
            e.printStackTrace();
        }
    }
}
import org.openapitools.client.api.ExpediteurApi;

public class ExpediteurApiExample {
    public static void main(String[] args) {
        ExpediteurApi apiInstance = new ExpediteurApi();
        BodyType840 bodyType840 = ; // BodyType840 | 

        try {
            'String' result = apiInstance.message840(bodyType840);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ExpediteurApi#message840");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
ExpediteurApi *apiInstance = [[ExpediteurApi alloc] init];
BodyType840 *bodyType840 = ; //  (optional)

// Endpoint de déclenchement d'un message 840
[apiInstance message840With:bodyType840
              completionHandler: ^('String' output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var ApiFaccediladeGunGamma2VersEdi = require('api_faccedilade_gun__gamma_2_vers_edi');

// Create an instance of the API class
var api = new ApiFaccediladeGunGamma2VersEdi.ExpediteurApi()
var opts = {
  'bodyType840':  // {BodyType840} 
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.message840(opts, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class message840Example
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new ExpediteurApi();
            var bodyType840 = new BodyType840(); // BodyType840 |  (optional) 

            try {
                // Endpoint de déclenchement d'un message 840
                'String' result = apiInstance.message840(bodyType840);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling ExpediteurApi.message840: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\ExpediteurApi();
$bodyType840 = ; // BodyType840 | 

try {
    $result = $api_instance->message840($bodyType840);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ExpediteurApi->message840: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::ExpediteurApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::ExpediteurApi->new();
my $bodyType840 = WWW::OPenAPIClient::Object::BodyType840->new(); # BodyType840 | 

eval {
    my $result = $api_instance->message840(bodyType840 => $bodyType840);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ExpediteurApi->message840: $@\n";
}
from __future__ import print_statement
import time
import openapi_client
from openapi_client.rest import ApiException
from pprint import pprint

# Create an instance of the API class
api_instance = openapi_client.ExpediteurApi()
bodyType840 =  # BodyType840 |  (optional)

try:
    # Endpoint de déclenchement d'un message 840
    api_response = api_instance.message840(bodyType840=bodyType840)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ExpediteurApi->message840: %s\n" % e)
extern crate ExpediteurApi;

pub fn main() {
    let bodyType840 = ; // BodyType840

    let mut context = ExpediteurApi::Context::default();
    let result = client.message840(bodyType840, &context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Body parameters
Name Description
bodyType840

Responses


message871

Endpoint de déclenchement d'un message 871

Endpoint de déclenchement d'un message 871


/871

Usage and SDK Samples

curl -X POST \
 -H "Accept: text/plain" \
 -H "Content-Type: application/json" \
 "http://localhost/871" \
 -d '{
  "ExplanationOnReasonForShortage" : {
    "ExciseMovement" : {
      "AdministrativeReferenceCode" : "09GKL5BWYERZV82CJV0V1",
      "SequenceNumber" : "98"
    },
    "ConsignorTrader" : {
      "StreetName" : "azertyuio",
      "__language" : "tg",
      "TraderName" : "edcvfr",
      "StreetNumber" : "abc",
      "City" : "asxx",
      "TraderExciseNumber" : "WNYmU9ai8UArd",
      "Postcode" : "#bp5"
    },
    "Analysis" : {
      "DateOfAnalysis" : "2022-01-31T00:00:00.000+00:00",
      "GlobalExplanation" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      }
    },
    "ConsigneeTrader" : {
      "StreetName" : "azertyuio",
      "__language" : "tg",
      "TraderName" : "edcvfr",
      "Traderid" : "aqwxsz",
      "StreetNumber" : "abc",
      "City" : "asxx",
      "Postcode" : "#bp5"
    },
    "BodyAnalysis" : [ {
      "Explanation" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "ExciseProductCode" : "@NM1",
      "BodyRecordUniqueReference" : "553",
      "ActualQuantity" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144"
    }, {
      "Explanation" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "ExciseProductCode" : "@NM1",
      "BodyRecordUniqueReference" : "553",
      "ActualQuantity" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144"
    }, {
      "Explanation" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "ExciseProductCode" : "@NM1",
      "BodyRecordUniqueReference" : "553",
      "ActualQuantity" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144"
    }, {
      "Explanation" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "ExciseProductCode" : "@NM1",
      "BodyRecordUniqueReference" : "553",
      "ActualQuantity" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144"
    }, {
      "Explanation" : {
        "__language" : "tg",
        "_content_" : "qwertyazerty"
      },
      "ExciseProductCode" : "@NM1",
      "BodyRecordUniqueReference" : "553",
      "ActualQuantity" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144"
    } ],
    "Attributes" : {
      "TypeDeclarant" : null,
      "DateAndTimeOfValidationOfExplanationOnShortage" : "2022-01-31T14:05:01"
    }
  }
}'
import org.openapitools.client.*;
import org.openapitools.client.auth.*;
import org.openapitools.client.model.*;
import org.openapitools.client.api.ExpediteurApi;

import java.io.File;
import java.util.*;

public class ExpediteurApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        ExpediteurApi apiInstance = new ExpediteurApi();
        String correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant corrélé au messageId du message initial
        BodyType871 bodyType871 = ; // BodyType871 | 

        try {
            'String' result = apiInstance.message871(correlationId, bodyType871);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ExpediteurApi#message871");
            e.printStackTrace();
        }
    }
}
import org.openapitools.client.api.ExpediteurApi;

public class ExpediteurApiExample {
    public static void main(String[] args) {
        ExpediteurApi apiInstance = new ExpediteurApi();
        String correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant corrélé au messageId du message initial
        BodyType871 bodyType871 = ; // BodyType871 | 

        try {
            'String' result = apiInstance.message871(correlationId, bodyType871);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ExpediteurApi#message871");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
ExpediteurApi *apiInstance = [[ExpediteurApi alloc] init];
String *correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // Identifiant corrélé au messageId du message initial (default to null)
BodyType871 *bodyType871 = ; //  (optional)

// Endpoint de déclenchement d'un message 871
[apiInstance message871With:correlationId
    bodyType871:bodyType871
              completionHandler: ^('String' output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var ApiFaccediladeGunGamma2VersEdi = require('api_faccedilade_gun__gamma_2_vers_edi');

// Create an instance of the API class
var api = new ApiFaccediladeGunGamma2VersEdi.ExpediteurApi()
var correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // {String} Identifiant corrélé au messageId du message initial
var opts = {
  'bodyType871':  // {BodyType871} 
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.message871(correlationId, opts, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class message871Example
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new ExpediteurApi();
            var correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b;  // String | Identifiant corrélé au messageId du message initial (default to null)
            var bodyType871 = new BodyType871(); // BodyType871 |  (optional) 

            try {
                // Endpoint de déclenchement d'un message 871
                'String' result = apiInstance.message871(correlationId, bodyType871);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling ExpediteurApi.message871: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\ExpediteurApi();
$correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant corrélé au messageId du message initial
$bodyType871 = ; // BodyType871 | 

try {
    $result = $api_instance->message871($correlationId, $bodyType871);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ExpediteurApi->message871: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::ExpediteurApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::ExpediteurApi->new();
my $correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; # String | Identifiant corrélé au messageId du message initial
my $bodyType871 = WWW::OPenAPIClient::Object::BodyType871->new(); # BodyType871 | 

eval {
    my $result = $api_instance->message871(correlationId => $correlationId, bodyType871 => $bodyType871);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ExpediteurApi->message871: $@\n";
}
from __future__ import print_statement
import time
import openapi_client
from openapi_client.rest import ApiException
from pprint import pprint

# Create an instance of the API class
api_instance = openapi_client.ExpediteurApi()
correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b # String | Identifiant corrélé au messageId du message initial (default to null)
bodyType871 =  # BodyType871 |  (optional)

try:
    # Endpoint de déclenchement d'un message 871
    api_response = api_instance.message871(correlationId, bodyType871=bodyType871)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ExpediteurApi->message871: %s\n" % e)
extern crate ExpediteurApi;

pub fn main() {
    let correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String
    let bodyType871 = ; // BodyType871

    let mut context = ExpediteurApi::Context::default();
    let result = client.message871(correlationId, bodyType871, &context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Header parameters
Name Description
correlationId*
String
Identifiant corrélé au messageId du message initial
Required
Body parameters
Name Description
bodyType871

Responses


message881

Endpoint de déclenchement d'un message 881

Endpoint de déclenchement d'un message 881


/881

Usage and SDK Samples

curl -X POST \
 -H "Accept: text/plain" \
 -H "Content-Type: application/json" \
 "http://localhost/881" \
 -d '{
  "ManualClosureResponse" : {
    "Attributes" : {
      "ComplementaryInformation" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "ManualClosureRequestReasonCodeComplement" : {
        "__language" : "tg",
        "_content_" : "azerty"
      },
      "ManualClosureRejectionReasonCode" : "3",
      "DateOfArrivalOfExciseProducts" : "2022-01-31T00:00:00.000+00:00",
      "GlobalConclusionOfReceipt" : null,
      "AdministrativeReferenceCode" : "09GKL5BWYERZV82CJV0V1",
      "SequenceNumber" : "98",
      "ManualClosureRequestReasonCode" : "3",
      "ManualClosureRejectionComplement" : {
        "__language" : "tg",
        "_content_" : "azerty"
      },
      "ManualClosureRequestAccepted" : null
    },
    "SupportingDocuments" : [ {
      "SupportingDocumentType" : "86u",
      "ImageOfDocument" : "ImageOfDocument",
      "SupportingDocumentDescription" : {
        "__language" : "tg",
        "_content_" : "azerty"
      },
      "ReferenceOfSupportingDocument" : {
        "__language" : "tg",
        "_content_" : "azerty"
      }
    }, {
      "SupportingDocumentType" : "86u",
      "ImageOfDocument" : "ImageOfDocument",
      "SupportingDocumentDescription" : {
        "__language" : "tg",
        "_content_" : "azerty"
      },
      "ReferenceOfSupportingDocument" : {
        "__language" : "tg",
        "_content_" : "azerty"
      }
    }, {
      "SupportingDocumentType" : "86u",
      "ImageOfDocument" : "ImageOfDocument",
      "SupportingDocumentDescription" : {
        "__language" : "tg",
        "_content_" : "azerty"
      },
      "ReferenceOfSupportingDocument" : {
        "__language" : "tg",
        "_content_" : "azerty"
      }
    }, {
      "SupportingDocumentType" : "86u",
      "ImageOfDocument" : "ImageOfDocument",
      "SupportingDocumentDescription" : {
        "__language" : "tg",
        "_content_" : "azerty"
      },
      "ReferenceOfSupportingDocument" : {
        "__language" : "tg",
        "_content_" : "azerty"
      }
    }, {
      "SupportingDocumentType" : "86u",
      "ImageOfDocument" : "ImageOfDocument",
      "SupportingDocumentDescription" : {
        "__language" : "tg",
        "_content_" : "azerty"
      },
      "ReferenceOfSupportingDocument" : {
        "__language" : "tg",
        "_content_" : "azerty"
      }
    } ],
    "BodyManualClosure" : [ {
      "ComplementaryInformation" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "ObservedShortageOrExcess" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "ExciseProductCode" : "@NM1",
      "IndicatorOfShortageOrExcess" : null,
      "BodyRecordUniqueReference" : "553",
      "RefusedQuantity" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144"
    }, {
      "ComplementaryInformation" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "ObservedShortageOrExcess" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "ExciseProductCode" : "@NM1",
      "IndicatorOfShortageOrExcess" : null,
      "BodyRecordUniqueReference" : "553",
      "RefusedQuantity" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144"
    }, {
      "ComplementaryInformation" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "ObservedShortageOrExcess" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "ExciseProductCode" : "@NM1",
      "IndicatorOfShortageOrExcess" : null,
      "BodyRecordUniqueReference" : "553",
      "RefusedQuantity" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144"
    }, {
      "ComplementaryInformation" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "ObservedShortageOrExcess" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "ExciseProductCode" : "@NM1",
      "IndicatorOfShortageOrExcess" : null,
      "BodyRecordUniqueReference" : "553",
      "RefusedQuantity" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144"
    }, {
      "ComplementaryInformation" : {
        "__language" : "tg",
        "_content_" : "adverty"
      },
      "ObservedShortageOrExcess" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144",
      "ExciseProductCode" : "@NM1",
      "IndicatorOfShortageOrExcess" : null,
      "BodyRecordUniqueReference" : "553",
      "RefusedQuantity" : "5850130 ou 95991385.9 ou 32284479386.83 ou 50422051684.144"
    } ]
  }
}'
import org.openapitools.client.*;
import org.openapitools.client.auth.*;
import org.openapitools.client.model.*;
import org.openapitools.client.api.ExpediteurApi;

import java.io.File;
import java.util.*;

public class ExpediteurApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        ExpediteurApi apiInstance = new ExpediteurApi();
        BodyType881 bodyType881 = ; // BodyType881 | 

        try {
            'String' result = apiInstance.message881(bodyType881);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ExpediteurApi#message881");
            e.printStackTrace();
        }
    }
}
import org.openapitools.client.api.ExpediteurApi;

public class ExpediteurApiExample {
    public static void main(String[] args) {
        ExpediteurApi apiInstance = new ExpediteurApi();
        BodyType881 bodyType881 = ; // BodyType881 | 

        try {
            'String' result = apiInstance.message881(bodyType881);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ExpediteurApi#message881");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
ExpediteurApi *apiInstance = [[ExpediteurApi alloc] init];
BodyType881 *bodyType881 = ; //  (optional)

// Endpoint de déclenchement d'un message 881
[apiInstance message881With:bodyType881
              completionHandler: ^('String' output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var ApiFaccediladeGunGamma2VersEdi = require('api_faccedilade_gun__gamma_2_vers_edi');

// Create an instance of the API class
var api = new ApiFaccediladeGunGamma2VersEdi.ExpediteurApi()
var opts = {
  'bodyType881':  // {BodyType881} 
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.message881(opts, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class message881Example
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new ExpediteurApi();
            var bodyType881 = new BodyType881(); // BodyType881 |  (optional) 

            try {
                // Endpoint de déclenchement d'un message 881
                'String' result = apiInstance.message881(bodyType881);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling ExpediteurApi.message881: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\ExpediteurApi();
$bodyType881 = ; // BodyType881 | 

try {
    $result = $api_instance->message881($bodyType881);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ExpediteurApi->message881: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::ExpediteurApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::ExpediteurApi->new();
my $bodyType881 = WWW::OPenAPIClient::Object::BodyType881->new(); # BodyType881 | 

eval {
    my $result = $api_instance->message881(bodyType881 => $bodyType881);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ExpediteurApi->message881: $@\n";
}
from __future__ import print_statement
import time
import openapi_client
from openapi_client.rest import ApiException
from pprint import pprint

# Create an instance of the API class
api_instance = openapi_client.ExpediteurApi()
bodyType881 =  # BodyType881 |  (optional)

try:
    # Endpoint de déclenchement d'un message 881
    api_response = api_instance.message881(bodyType881=bodyType881)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ExpediteurApi->message881: %s\n" % e)
extern crate ExpediteurApi;

pub fn main() {
    let bodyType881 = ; // BodyType881

    let mut context = ExpediteurApi::Context::default();
    let result = client.message881(bodyType881, &context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Body parameters
Name Description
bodyType881

Responses


message906

Endpoint de déclenchement d'un message 906

Endpoint de déclenchement d'un message 906


/906

Usage and SDK Samples

curl -X POST \
 -H "Accept: text/plain" \
 -H "Content-Type: application/json" \
 "http://localhost/906" \
 -d '{
  "FunctionalNegativeAcknowledgement" : {
    "FunctionalError" : [ {
      "ErrorLocation" : "qwertyazerty",
      "ErrorType" : null,
      "OriginalAttributeValue" : "qwertyazerty",
      "ErrorReason" : "qwertyazerty"
    }, {
      "ErrorLocation" : "qwertyazerty",
      "ErrorType" : null,
      "OriginalAttributeValue" : "qwertyazerty",
      "ErrorReason" : "qwertyazerty"
    }, {
      "ErrorLocation" : "qwertyazerty",
      "ErrorType" : null,
      "OriginalAttributeValue" : "qwertyazerty",
      "ErrorReason" : "qwertyazerty"
    }, {
      "ErrorLocation" : "qwertyazerty",
      "ErrorType" : null,
      "OriginalAttributeValue" : "qwertyazerty",
      "ErrorReason" : "qwertyazerty"
    }, {
      "ErrorLocation" : "qwertyazerty",
      "ErrorType" : null,
      "OriginalAttributeValue" : "qwertyazerty",
      "ErrorReason" : "qwertyazerty"
    } ],
    "Attributes" : {
      "AdministrativeReferenceCode" : "~00J]fkDK1(VGkj>TeJ6",
      "SequenceNumber" : "98"
    },
    "DateRefus" : {
      "RejectionDate" : "2000-01-23T04:56:07.000+00:00"
    }
  }
}'
import org.openapitools.client.*;
import org.openapitools.client.auth.*;
import org.openapitools.client.model.*;
import org.openapitools.client.api.ExpediteurApi;

import java.io.File;
import java.util.*;

public class ExpediteurApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        ExpediteurApi apiInstance = new ExpediteurApi();
        String correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant corrélé au messageId du message initial
        BodyType906 bodyType906 = ; // BodyType906 | 

        try {
            'String' result = apiInstance.message906(correlationId, bodyType906);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ExpediteurApi#message906");
            e.printStackTrace();
        }
    }
}
import org.openapitools.client.api.ExpediteurApi;

public class ExpediteurApiExample {
    public static void main(String[] args) {
        ExpediteurApi apiInstance = new ExpediteurApi();
        String correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant corrélé au messageId du message initial
        BodyType906 bodyType906 = ; // BodyType906 | 

        try {
            'String' result = apiInstance.message906(correlationId, bodyType906);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ExpediteurApi#message906");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
ExpediteurApi *apiInstance = [[ExpediteurApi alloc] init];
String *correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // Identifiant corrélé au messageId du message initial (default to null)
BodyType906 *bodyType906 = ; //  (optional)

// Endpoint de déclenchement d'un message 906
[apiInstance message906With:correlationId
    bodyType906:bodyType906
              completionHandler: ^('String' output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var ApiFaccediladeGunGamma2VersEdi = require('api_faccedilade_gun__gamma_2_vers_edi');

// Create an instance of the API class
var api = new ApiFaccediladeGunGamma2VersEdi.ExpediteurApi()
var correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // {String} Identifiant corrélé au messageId du message initial
var opts = {
  'bodyType906':  // {BodyType906} 
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.message906(correlationId, opts, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class message906Example
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new ExpediteurApi();
            var correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b;  // String | Identifiant corrélé au messageId du message initial (default to null)
            var bodyType906 = new BodyType906(); // BodyType906 |  (optional) 

            try {
                // Endpoint de déclenchement d'un message 906
                'String' result = apiInstance.message906(correlationId, bodyType906);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling ExpediteurApi.message906: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\ExpediteurApi();
$correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant corrélé au messageId du message initial
$bodyType906 = ; // BodyType906 | 

try {
    $result = $api_instance->message906($correlationId, $bodyType906);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ExpediteurApi->message906: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::ExpediteurApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::ExpediteurApi->new();
my $correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; # String | Identifiant corrélé au messageId du message initial
my $bodyType906 = WWW::OPenAPIClient::Object::BodyType906->new(); # BodyType906 | 

eval {
    my $result = $api_instance->message906(correlationId => $correlationId, bodyType906 => $bodyType906);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ExpediteurApi->message906: $@\n";
}
from __future__ import print_statement
import time
import openapi_client
from openapi_client.rest import ApiException
from pprint import pprint

# Create an instance of the API class
api_instance = openapi_client.ExpediteurApi()
correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b # String | Identifiant corrélé au messageId du message initial (default to null)
bodyType906 =  # BodyType906 |  (optional)

try:
    # Endpoint de déclenchement d'un message 906
    api_response = api_instance.message906(correlationId, bodyType906=bodyType906)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ExpediteurApi->message906: %s\n" % e)
extern crate ExpediteurApi;

pub fn main() {
    let correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String
    let bodyType906 = ; // BodyType906

    let mut context = ExpediteurApi::Context::default();
    let result = client.message906(correlationId, bodyType906, &context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Header parameters
Name Description
correlationId*
String
Identifiant corrélé au messageId du message initial
Required
Body parameters
Name Description
bodyType906

Responses


message917

Endpoint de déclenchement d'un message 917

Endpoint de déclenchement d'un message 917


/917

Usage and SDK Samples

curl -X POST \
 -H "Accept: text/plain" \
 -H "Content-Type: application/json" \
 "http://localhost/917" \
 -d '{
  "XmlNegativeAcknowledgement" : {
    "Attributes" : {
      "AdministrativeReferenceCode" : "09GKL5BWYERZV82CJV0V1",
      "SequenceNumber" : "98"
    },
    "XmlError" : [ {
      "ErrorLocation" : "qwertyazerty",
      "ErrorReason" : "qwertyazerty"
    }, {
      "ErrorLocation" : "qwertyazerty",
      "ErrorReason" : "qwertyazerty"
    }, {
      "ErrorLocation" : "qwertyazerty",
      "ErrorReason" : "qwertyazerty"
    }, {
      "ErrorLocation" : "qwertyazerty",
      "ErrorReason" : "qwertyazerty"
    }, {
      "ErrorLocation" : "qwertyazerty",
      "ErrorReason" : "qwertyazerty"
    } ]
  }
}'
import org.openapitools.client.*;
import org.openapitools.client.auth.*;
import org.openapitools.client.model.*;
import org.openapitools.client.api.ExpediteurApi;

import java.io.File;
import java.util.*;

public class ExpediteurApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        ExpediteurApi apiInstance = new ExpediteurApi();
        String correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant corrélé au messageId du message initial
        BodyType917 bodyType917 = ; // BodyType917 | 

        try {
            'String' result = apiInstance.message917(correlationId, bodyType917);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ExpediteurApi#message917");
            e.printStackTrace();
        }
    }
}
import org.openapitools.client.api.ExpediteurApi;

public class ExpediteurApiExample {
    public static void main(String[] args) {
        ExpediteurApi apiInstance = new ExpediteurApi();
        String correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant corrélé au messageId du message initial
        BodyType917 bodyType917 = ; // BodyType917 | 

        try {
            'String' result = apiInstance.message917(correlationId, bodyType917);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ExpediteurApi#message917");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
ExpediteurApi *apiInstance = [[ExpediteurApi alloc] init];
String *correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // Identifiant corrélé au messageId du message initial (default to null)
BodyType917 *bodyType917 = ; //  (optional)

// Endpoint de déclenchement d'un message 917
[apiInstance message917With:correlationId
    bodyType917:bodyType917
              completionHandler: ^('String' output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var ApiFaccediladeGunGamma2VersEdi = require('api_faccedilade_gun__gamma_2_vers_edi');

// Create an instance of the API class
var api = new ApiFaccediladeGunGamma2VersEdi.ExpediteurApi()
var correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // {String} Identifiant corrélé au messageId du message initial
var opts = {
  'bodyType917':  // {BodyType917} 
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.message917(correlationId, opts, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class message917Example
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new ExpediteurApi();
            var correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b;  // String | Identifiant corrélé au messageId du message initial (default to null)
            var bodyType917 = new BodyType917(); // BodyType917 |  (optional) 

            try {
                // Endpoint de déclenchement d'un message 917
                'String' result = apiInstance.message917(correlationId, bodyType917);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling ExpediteurApi.message917: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\ExpediteurApi();
$correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant corrélé au messageId du message initial
$bodyType917 = ; // BodyType917 | 

try {
    $result = $api_instance->message917($correlationId, $bodyType917);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ExpediteurApi->message917: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::ExpediteurApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::ExpediteurApi->new();
my $correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; # String | Identifiant corrélé au messageId du message initial
my $bodyType917 = WWW::OPenAPIClient::Object::BodyType917->new(); # BodyType917 | 

eval {
    my $result = $api_instance->message917(correlationId => $correlationId, bodyType917 => $bodyType917);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ExpediteurApi->message917: $@\n";
}
from __future__ import print_statement
import time
import openapi_client
from openapi_client.rest import ApiException
from pprint import pprint

# Create an instance of the API class
api_instance = openapi_client.ExpediteurApi()
correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b # String | Identifiant corrélé au messageId du message initial (default to null)
bodyType917 =  # BodyType917 |  (optional)

try:
    # Endpoint de déclenchement d'un message 917
    api_response = api_instance.message917(correlationId, bodyType917=bodyType917)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ExpediteurApi->message917: %s\n" % e)
extern crate ExpediteurApi;

pub fn main() {
    let correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String
    let bodyType917 = ; // BodyType917

    let mut context = ExpediteurApi::Context::default();
    let result = client.message917(correlationId, bodyType917, &context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Header parameters
Name Description
correlationId*
String
Identifiant corrélé au messageId du message initial
Required
Body parameters
Name Description
bodyType917

Responses


messageMVVDSAConf

Endpoint de déclenchement d'un message MVVDSAConf

Endpoint de déclenchement d'un message MVVDSAConf


/mvvdsaconf

Usage and SDK Samples

curl -X POST \
 -H "Accept: text/plain" \
 -H "Content-Type: application/json" \
 "http://localhost/mvvdsaconf" \
 -d '{
  "MVVDSAConf" : {
    "ReferenceMouvement" : {
      "Statut" : "0C1",
      "NumSeq" : "98",
      "LRN" : "~00J]fkDK1(VGkj>TeJ6",
      "NumeroDocument" : "NumeroDocument",
      "TypeDocument" : "TypeDocument"
    },
    "Entete" : {
      "SIRETPrestataire" : "SIRETPrestataire",
      "TypeAction" : "TypeAction"
    }
  }
}'
import org.openapitools.client.*;
import org.openapitools.client.auth.*;
import org.openapitools.client.model.*;
import org.openapitools.client.api.ExpediteurApi;

import java.io.File;
import java.util.*;

public class ExpediteurApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        ExpediteurApi apiInstance = new ExpediteurApi();
        String correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant corrélé au messageId du message initial
        MVVDSAConf mVVDSAConf = ; // MVVDSAConf | 

        try {
            'String' result = apiInstance.messageMVVDSAConf(correlationId, mVVDSAConf);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ExpediteurApi#messageMVVDSAConf");
            e.printStackTrace();
        }
    }
}
import org.openapitools.client.api.ExpediteurApi;

public class ExpediteurApiExample {
    public static void main(String[] args) {
        ExpediteurApi apiInstance = new ExpediteurApi();
        String correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant corrélé au messageId du message initial
        MVVDSAConf mVVDSAConf = ; // MVVDSAConf | 

        try {
            'String' result = apiInstance.messageMVVDSAConf(correlationId, mVVDSAConf);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ExpediteurApi#messageMVVDSAConf");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
ExpediteurApi *apiInstance = [[ExpediteurApi alloc] init];
String *correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // Identifiant corrélé au messageId du message initial (default to null)
MVVDSAConf *mVVDSAConf = ; //  (optional)

// Endpoint de déclenchement d'un message MVVDSAConf
[apiInstance messageMVVDSAConfWith:correlationId
    mVVDSAConf:mVVDSAConf
              completionHandler: ^('String' output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var ApiFaccediladeGunGamma2VersEdi = require('api_faccedilade_gun__gamma_2_vers_edi');

// Create an instance of the API class
var api = new ApiFaccediladeGunGamma2VersEdi.ExpediteurApi()
var correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // {String} Identifiant corrélé au messageId du message initial
var opts = {
  'mVVDSAConf':  // {MVVDSAConf} 
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.messageMVVDSAConf(correlationId, opts, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class messageMVVDSAConfExample
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new ExpediteurApi();
            var correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b;  // String | Identifiant corrélé au messageId du message initial (default to null)
            var mVVDSAConf = new MVVDSAConf(); // MVVDSAConf |  (optional) 

            try {
                // Endpoint de déclenchement d'un message MVVDSAConf
                'String' result = apiInstance.messageMVVDSAConf(correlationId, mVVDSAConf);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling ExpediteurApi.messageMVVDSAConf: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\ExpediteurApi();
$correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String | Identifiant corrélé au messageId du message initial
$mVVDSAConf = ; // MVVDSAConf | 

try {
    $result = $api_instance->messageMVVDSAConf($correlationId, $mVVDSAConf);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ExpediteurApi->messageMVVDSAConf: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::ExpediteurApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::ExpediteurApi->new();
my $correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; # String | Identifiant corrélé au messageId du message initial
my $mVVDSAConf = WWW::OPenAPIClient::Object::MVVDSAConf->new(); # MVVDSAConf | 

eval {
    my $result = $api_instance->messageMVVDSAConf(correlationId => $correlationId, mVVDSAConf => $mVVDSAConf);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ExpediteurApi->messageMVVDSAConf: $@\n";
}
from __future__ import print_statement
import time
import openapi_client
from openapi_client.rest import ApiException
from pprint import pprint

# Create an instance of the API class
api_instance = openapi_client.ExpediteurApi()
correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b # String | Identifiant corrélé au messageId du message initial (default to null)
mVVDSAConf =  # MVVDSAConf |  (optional)

try:
    # Endpoint de déclenchement d'un message MVVDSAConf
    api_response = api_instance.message_mvvdsa_conf(correlationId, mVVDSAConf=mVVDSAConf)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ExpediteurApi->messageMVVDSAConf: %s\n" % e)
extern crate ExpediteurApi;

pub fn main() {
    let correlationId = 370b56ea-37e4-497b-9d03-adec0da9cf9b; // String
    let mVVDSAConf = ; // MVVDSAConf

    let mut context = ExpediteurApi::Context::default();
    let result = client.messageMVVDSAConf(correlationId, mVVDSAConf, &context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Header parameters
Name Description
correlationId*
String
Identifiant corrélé au messageId du message initial
Required
Body parameters
Name Description
mVVDSAConf

Responses