action jumpseller_post_hooks_json { label: "Create a new Hook." provider: jumpseller method: POST path: "/hooks.json" encoding: json output: { type: "object" properties: { hook: { type: "object" properties: { created_at: { type: "string" description: "Hook creation date" } event: { type: "string" description: "Event associated with Hook" } id: { type: "integer" format: "int32" description: "Unique identifier of the Hook" } name: { type: "string" description: "Hook name" } url: { type: "string" description: "Hook URL to be notified" } } } } } }