action orbit_put_workspace_slug_members_member_slug { label: "Update a member" provider: orbit method: PUT path: "/{workspace_slug}/members/{member_slug}" encoding: json input: { type: "object" properties: { bio: { type: "string" } birthday: { type: "string" } company: { type: "string" } devto: { type: "string" description: "The member's DEV username" } email: { type: "string" description: "The member's email" } github: { type: "string" description: "The member's GitHub username" } linkedin: { type: "string" description: "The member's LinkedIn username, without the in/ or pub/" } location: { type: "string" } member_slug: { type: "string" } name: { type: "string" } pronouns: { type: "string" } shipping_address: { type: "string" } slug: { type: "string" } tag_list: { type: "string" description: "Deprecated: Please use the tags attribute instead" } tags: { type: "string" description: "Replaces all tags for the member; comma-separated string or array" } tags_to_add: { type: "string" description: "Adds tags to member; comma-separated string or array" } teammate: { type: "boolean" } title: { type: "string" } tshirt: { type: "string" } twitter: { type: "string" description: "The member's Twitter username" } url: { type: "string" } workspace_slug: { type: "string" } } required: ["member_slug", "workspace_slug"] additionalProperties: false } output: { type: "object" additionalProperties: true } }