action loket_get_yourcampus_url_by_user_id { label: "Get Yourcampus URL for a user" description: "__Activity name :__ GetYourcampusUrlByUserId\n\nGet a URL to access the Yourcampus portal for a user\n" provider: loket method: GET path: "/users/{userId}/yourcampusurl" encoding: json input: { type: "object" properties: { Accept: { type: "string" } Authorization: { type: "string" } userId: { type: "string" format: "uuid" } } required: ["Accept", "Authorization", "userId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }