action clearblade_get_service { label: "CODE - Retrieve information about service" description: "Returns setting information and data for a code service" provider: clearblade method: GET path: "/api/v/1/code/{systemKey}/{serviceName}" encoding: json input: { type: "object" properties: { "ClearBlade-DevToken": { type: "string" } serviceName: { type: "string" } systemKey: { type: "string" } } required: ["ClearBlade-DevToken", "serviceName", "systemKey"] additionalProperties: false } output: { type: "object" additionalProperties: true } }