action rbaskets_put_baskets_name_responses_method { label: "Update response settings" description: "Allows to configure HTTP response of this basket. The service will reply with configured response to any HTTP\nrequest sent to the basket with appropriate HTTP method.\n\nIf nothing is configured, the default response is HTTP 200 - OK with empty content.\n" provider: rbaskets method: PUT path: "/baskets/{name}/responses/{method}" encoding: json input: { type: "object" properties: { method: { type: "string" } name: { type: "string" } } required: ["method", "name"] additionalProperties: false } output: { type: "object" additionalProperties: true } }