action rbaskets_get_api_baskets_name_responses_method { label: "Get response settings" description: "Retrieves information about configured response of the basket. Service will reply with this response to any\nHTTP request 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: GET path: "/api/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 } }