action gambitcomm_protocol_coap_get_config { label: "Show the agent's COAP configuration" description: "Agent's COAP configuration with port,rule,prompt,paging_prompt,userdb,keymap" provider: gambitcomm method: GET path: "/mimic/agent/{agentNum}/protocol/msg/coap/get/config" encoding: json input: { type: "object" properties: { agentNum: { type: "integer" format: "int32" } } required: ["agentNum"] additionalProperties: false } output: { type: "object" properties: { keystore: { type: "string" } primary_port: { type: "integer" format: "int32" } rule: { type: "string" } secure_port: { type: "integer" format: "int32" } } } }