> ## Documentation Index
> Fetch the complete documentation index at: https://auth0.generaltranslation.app/llms.txt
> Use this file to discover all available pages before exploring further.

# XML

> Découvrez comment configurer vos actions de flux XML pour convertir JSON en XML et XML en JSON.

Cette liste d’actions XML vous permet de convertir des objets JSON en chaîne XML et des chaînes XML en objets JSON.

<div id="convert-json-to-xml">
  ## onvertir JSON en XML
</div>

Convertit un objet JSON en chaîne XML.

<Frame>
  <img src="https://mintcdn.com/generaltranslationinc/RnTJ5sT0kNq-58cb/docs/images/fr-ca/cdy7uua7fh8z/3GW2EhBMIX3YDPaqc3rXrZ/7706a863700df51376d645a7d9292a27/convertjsontoxml.png?fit=max&auto=format&n=RnTJ5sT0kNq-58cb&q=85&s=2ced56d3d2a74c5d494b9e6d85c534c9" alt="" width="765" height="292" data-path="docs/images/fr-ca/cdy7uua7fh8z/3GW2EhBMIX3YDPaqc3rXrZ/7706a863700df51376d645a7d9292a27/convertjsontoxml.png" />
</Frame>

<div id="input-settings">
  ### Paramètres de saisie
</div>

<table class="table">
  <thead>
    <tr>
      <th><b>Paramètre</b></th>
      <th><b>Description</b></th>
    </tr>
  </thead>

  <tbody>
    <tr>
      <td>JSON (obligatoire)</td>

      <td>
        L’objet JSON qui sera converti en chaîne XML.
      </td>
    </tr>
  </tbody>
</table>

<div id="output-object">
  ### Objet de sortie
</div>

<table class="table">
  <thead>
    <tr>
      <th><b>Propriété</b></th>
      <th><b>Type</b></th>
      <th><b>Description</b></th>
    </tr>
  </thead>

  <tbody>
    <tr>
      <td>`xml`</td>
      <td>Chaîne </td>
      <td>La chaîne XML convertie.</td>
    </tr>
  </tbody>
</table>

<div id="output-object-example">
  ### Exemple d’objet de sortie
</div>

```javascript lines theme={null}
{
  "xml": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n<name>John Doe</name>"
}
```

<div id="convert-xml-to-json">
  ## Convertir XML en JSON
</div>

Convertit une chaîne XML en objet JSON.

<Frame>
  <img src="https://mintcdn.com/generaltranslationinc/2RKJkv7bJ8pSb5rN/docs/images/fr-ca/cdy7uua7fh8z/42fO7BelEN4bnlUj70WhV8/e53ada552f7cc05c192466db4777471a/covertxmltojson.png?fit=max&auto=format&n=2RKJkv7bJ8pSb5rN&q=85&s=9455548b347b2b22dddc35a1c007f4c2" alt="" width="776" height="295" data-path="docs/images/fr-ca/cdy7uua7fh8z/42fO7BelEN4bnlUj70WhV8/e53ada552f7cc05c192466db4777471a/covertxmltojson.png" />
</Frame>

<div id="input-settings">
  ### Paramètres de saisie
</div>

<table class="table">
  <thead>
    <tr>
      <th><b>Paramètre</b></th>
      <th><b>Description</b></th>
    </tr>
  </thead>

  <tbody>
    <tr>
      <td>XML (obligatoire)</td>

      <td>
        La chaîne XML qui sera convertie en objet JSON.
      </td>
    </tr>
  </tbody>
</table>

<div id="output-object">
  ### Objet de sortie
</div>

<table class="table">
  <thead>
    <tr>
      <th><b>Propriété</b></th>
      <th><b>Type</b></th>
      <th><b>Description</b></th>
    </tr>
  </thead>

  <tbody>
    <tr>
      <td>`object`</td>
      <td>Objet</td>
      <td>L'objet JSON converti.</td>
    </tr>
  </tbody>
</table>

<div id="output-object-example">
  ### Exemple d’objet de sortie
</div>

```json lines theme={null}
{
  "object": {
    "name": "John Doe"
  }
}
```

##
