action orbit_get_workspace_slug_members_find { label: "Find a member by an identity" description: "Provide a source and one of username/uid/email params to return a member with that identity, if one exists. Common values for source include github, twitter, and email." provider: orbit method: GET path: "/{workspace_slug}/members/find" encoding: json input: { type: "object" properties: { email: { type: "string" } github: { type: "string" } source: { type: "string" } source_host: { type: "string" } uid: { type: "string" } username: { type: "string" } workspace_slug: { type: "string" } } required: ["workspace_slug"] additionalProperties: false } output: { type: "object" additionalProperties: true } }