action circuitsandbox_grant_space_acces { label: "grant access for a space" description: "grant access for a space\nOauthScopes: WRITE_SPACE, MANAGE_SPACE" provider: circuitsandbox method: POST path: "/spaces/{spaceId}/participant/{participantId}/grant" encoding: json input: { type: "object" properties: { participantId: { type: "string" } spaceId: { type: "string" } } required: ["participantId", "spaceId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }