action circuitsandbox_get_pinned_topics { label: "Retrieve pinned topics" description: "Retrieve pinned topics of a space\nOauthScopes: READ_SPACE" provider: circuitsandbox method: GET path: "/spaces/{id}/pinnedTopics" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "array" items: { properties: { position: { type: "number" format: "int32" description: "The position of a pinned topic" } subject: { type: "string" description: "The subject of a pinned topic" } topicId: { type: "string" description: "The id of a pinned topic" } } } } }