Turf API Documentation
  1. Gamification
Turf API Documentation
  • Users
    • Create Community Member
      POST
    • Update Community Member's Profile
      PUT
    • Get Community Members
      GET
    • Block Community Member
      PUT
    • Get Community Member's Details
      GET
    • Get Member's Created Posts
      GET
    • Get Member's Saved Posts
      GET
    • Get Member's Comments
      GET
  • Channels
    • Get Community Channels
      GET
    • Get Roadmap Channel Status
      GET
  • Posts
    • Create Discussion Post
      POST
    • Update Discussion Post
      PUT
    • Create Article Post
      POST
    • Update Article Post
      PUT
    • Top Community Posts
      GET
    • Get Channel's Posts
      GET
    • Get Discussion Post Details
      GET
    • Get Article Post Details
      GET
    • Update Roadmap Post Status
      PUT
  • Courses
    • Top Community Courses
      GET
  • Segments
    • Get Community Segments
      GET
    • Add Member To Segment
      POST
    • Remove Member From Segment
      DELETE
  • Gamification
    • Get Community Badges
      GET
    • Award Badge To Member
      POST
    • Remove Badge From Member
      DELETE
  • Comments
    • Create Comment On Post
    • Update Comment On Post
    • Delete Existing Comment
    • Create comment on comment
  1. Gamification

Remove Badge From Member

DELETE
https://2e0a7m2i9j.execute-api.eu-central-1.amazonaws.com/prod/badges/v1/user/badge
The Remove Badge From Member API removes a defined badge from a member in your community. This API requires you to define the member that you want to remove the badge from and the badge that your want to remove from the member.

Request

Header Params

Body Params application/json

Examples

Responses

🟢200OK
application/json
Body

🟠400Bad Request
🟠401Unauthorized
🔴500Server Error
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request DELETE 'https://2e0a7m2i9j.execute-api.eu-central-1.amazonaws.com/prod/badges/v1/user/badge' \
--header 'x-api-key: api_key' \
--header 'Content-Type: application/json' \
--data-raw '{
    "user": "olivier-van-den-hoogen",
    "badgeId": "11"
}'
Response Response Example
200 - Example 1
{
    "message": "string",
    "data": [
        {
            "id": 0,
            "name": "string",
            "image": "string"
        }
    ]
}
Modified at 2025-09-03 14:55:32
Previous
Award Badge To Member
Next
Create Comment On Post
Built with