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.
Cette liste d’actions XML vous permet de convertir des objets JSON en chaîne XML et des chaînes XML en objets JSON.
Convertit un objet JSON en chaîne XML.
| Paramètre | Description |
|---|
| JSON (obligatoire) | L’objet JSON qui sera converti en chaîne XML. |
| Propriété | Type | Description |
|---|
xml | Chaîne | La chaîne XML convertie. |
Exemple d’objet de sortie
{
"xml": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n<name>John Doe</name>"
}
Convertit une chaîne XML en objet JSON.
| Paramètre | Description |
|---|
| XML (obligatoire) | La chaîne XML qui sera convertie en objet JSON. |
| Propriété | Type | Description |
|---|
object | Objet | L’objet JSON converti. |
Exemple d’objet de sortie
{
"object": {
"name": "John Doe"
}
}