action contribly_get_users_id_linked_type { label: "Retrieve a users linked profile by type" provider: contribly method: GET path: "/users/{id}/linked/{type}" encoding: json input: { type: "object" properties: { id: { type: "string" } type: { type: "string" } } required: ["id", "type"] additionalProperties: false } output: { type: "object" properties: { bio: { type: "string" } email: { type: "string" } id: { type: "string" } name: { type: "string" } picture: { type: "string" } profile: { type: "string" } registered: { type: "string" format: "date-time" } } } }