Checks the block status for a target member relative to the authenticated member
A valid member_id path parameter for the target member is required.
The block status for the target member. This may be one of 'blocked' or 'none'
Blocks a target member from various interactions with the authenticated member on the platform
A valid member_id path parameter for the target member is required. This method requires the oauth reporting scope for oauth-authenticated requests
An optional string of text describing why you have chosen to block this member
An optional value that represents a type of abuse the target member is being blocked for. Acceptable values include one of the following: fake, harass, inappropriate, spam
A successful block request will result in a 204 No Content response
Block a member {member_id} as a member authorized with the token {token} and the scope "abuse"
curl -X POST -H "Authorization: Bearer {token}" \
"https://api.meetup.com/self/blocks/{member_id}"
Unblocks a previously blocked member from various interactions with the authenticated member on the platform
A valid member_id path parameter for the target member is required. This method requires the oauth reporting scope for oauth-authenticated requests.
A successful unblock request will result in a 204 No Content response
Block a member {member_id} as a member authorized with the token {token} and scope "abuse"
curl -X DELETE -H "Authorization: Bearer {token}" \
"https://api.meetup.com/self/blocks/{member_id}"
v3 comments