action isendpro_get_credit { label: "Interrogation credit" description: "Retourne le credit existant associe au compte.\n" provider: isendpro method: GET path: "/credit" encoding: json input: { type: "object" properties: { credit: { type: "string" enum: ["1", "2"] } keyid: { type: "string" format: "string" } } required: ["credit", "keyid"] additionalProperties: false } output: { type: "object" properties: { etat: { properties: { credit: { type: "number" format: "double" description: "Montant du crédit restant" } quantite: { type: "string" format: "string" description: "Equivalence du crédit en nombre de SMS vers la France Métropolitaine." } } } } } }