action daniweb_get_groups_id_memberships { label: "get_groups_ID_memberships" description: "Fetch an array of users who are members of specific groups that you are also a member of. You can only retrieve users existing within the current access token's bubble." provider: daniweb method: GET path: "/groups/{ID}/memberships" encoding: json input: { type: "object" properties: { ID: { type: "array" items: { type: "integer" format: "int32" } } moderators_only: { type: "boolean" } offset: { type: "integer" format: "int32" } } required: ["ID"] additionalProperties: false } output: { type: "object" properties: { data: { type: "array" items: { type: "object" properties: { group: { type: "object" required: ["id"] properties: { first_message: { type: "object" properties: { timestamp: { type: "string" format: "date-time" } } } id: { type: "number" format: "int32" } latest_message: { type: "object" required: ["id"] properties: { author: { type: "object" required: ["id"] properties: { business_card: { type: "object" properties: { company_name: { type: "string" } company_size: { type: "string" } headline: { type: "string" } industry: { type: "string" } interest_tags: { type: "array" items: { type: "object" additionalProperties: true } } job_position: { type: "string" } summary: { type: "string" } website: { type: "object" properties: { thumbshot_uri: { type: "object" additionalProperties: true } url: { type: "object" additionalProperties: true } } } } } community_persona: { type: "object" required: ["id"] properties: { id: { type: "number" format: "int32" } identity: { type: "object" properties: { avatar_uri: { type: "object" additionalProperties: true } badge: { type: "object" additionalProperties: true } profile_url: { type: "object" additionalProperties: true } username: { type: "object" additionalProperties: true } } } location: { type: "object" properties: { free_form: { type: "object" additionalProperties: true } } } personal: { type: "object" properties: { about_me: { type: "object" additionalProperties: true } birthday: { type: "object" additionalProperties: true } interests: { type: "object" additionalProperties: true } pc_specs: { type: "object" additionalProperties: true } } } signature: { type: "object" properties: { parsed: { type: "object" additionalProperties: true } raw: { type: "object" additionalProperties: true } } } stats: { type: "object" properties: { answered_count: { type: "object" additionalProperties: true } endorsements_count: { type: "object" additionalProperties: true } posts_count: { type: "object" additionalProperties: true } reputation_count: { type: "object" additionalProperties: true } } } } } id: { type: "number" format: "int32" } profile: { type: "object" properties: { first_name: { type: "string" } last_name: { type: "string" } } } usage: { type: "object" properties: { available_status: { type: "boolean" } joined_timestamp: { type: "string" format: "date-time" } last_activity_timestamp: { type: "string" format: "date-time" } online_status: { type: "boolean" } } } } } group: { type: "object" additionalProperties: true } id: { type: "number" format: "int32" } last_seen: { type: "object" properties: { timestamp: { type: "string" format: "date-time" } user: { type: "object" additionalProperties: true } } } moderated: { type: "object" properties: { deleted_status: { type: "boolean" } } } text: { type: "object" properties: { parsed: { type: "string" } } } timestamp: { type: "string" format: "date-time" } } } member_count: { type: "number" format: "int32" } owner: { type: "object" additionalProperties: true } properties: { type: "object" properties: { description: { type: "string" } name: { type: "string" } privacy: { type: "string" } slug: { type: "string" } } } } } member: { type: "object" additionalProperties: true } privileges: { type: "object" properties: { moderator: { type: "boolean" } owner: { type: "boolean" } } } } } } pagination: { type: "object" properties: { limit: { type: "number" format: "int32" } offset: { type: "number" format: "int32" } total_records: { type: "number" format: "int32" } } } } } }