action jumpseller_get_hooks_id_json { label: "Retrieve a single Hook." provider: jumpseller method: GET path: "/hooks/{id}.json" encoding: json input: { type: "object" properties: { id: { type: "integer" format: "int32" } } required: ["id"] additionalProperties: false } 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" } } } } } }