action isendpro_add_shortlink { label: "add a shortlink" description: "add a shortlink" provider: isendpro method: POST path: "/shortlink" encoding: json input: { type: "object" required: ["keyid", "shortlink"] properties: { keyid: { type: "string" } shortlink: { type: "string" } } } output: { type: "object" properties: { etat: { type: "object" properties: { etat: { type: "array" items: { type: "object" properties: { code: { type: "number" } message: { type: "string" } shortlink: { type: "string" } } } } } } } } }