action telnyx_retrieve_connection { label: "Retrieve a connection" description: "Retrieves the high-level details of an existing connection. To retrieve specific authentication information, use the endpoint for the specific connection type." provider: telnyx method: GET path: "/connections/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }