1. badges
Ludoria
  • auth
    • Login
      POST
    • Facebook Auth
      GET
    • Google Auth
      GET
    • Discord Auth
      GET
    • Apple Auth
      GET
  • achievements
    • List all achievements
      GET
    • Retrieve an achievement
      GET
    • Create an achievement
      POST
    • Update an achievement
      PATCH
    • Delete an achievement
      DELETE
  • activity-logs
    • List all activity log entries
      GET
    • Retrieve an activity log entry
      GET
    • Create an activity log entry
      POST
    • Update an activity log entry
      PATCH
    • Delete an activity log entry
      DELETE
  • badges
    • List all badges
      GET
    • Retrieve a badge
      GET
    • Create a badge
      POST
    • Update a badge
      PATCH
    • Delete a badge
      DELETE
  • backlog
    • List all backlog entries
      GET
    • Retrieve a backlog entry
      GET
    • Create a backlog entry
      POST
    • Update a backlog entry
      PATCH
    • Delete a backlog entry
      DELETE
  • blogs
    • List all blogs
    • Retrieve a blog post
    • Create a blog post
    • Update a blog post
    • Delete a blog
  • changelog
    • List all changelog entries
    • Retrieve a changelog entry
    • Create a changelog entry
    • Update a changelog entry
    • Delete a changelog entry
  • feedback
    • List all feedback
    • Retrieve a feedback
    • Create a feedback
    • Update a feedback
    • Delete a feedback
  • subscriptions
    • List all subscriptions
    • Retrieve a subscription
    • Create a subscription
    • Update a subscription
    • Delete a subscription
  • subscriptions offers
    • List all subscriptions
    • Retrieve a subscription offer
    • Create a subscription offer
    • Update a subscription offer
    • Delete a subscription
  • games
    • stats
      • List all game stats
      • Retrieve a game's stats
      • Create a game's stats
      • Upsert a game's stats
      • Update a game's stats
      • Increment a game's stats
      • Decrement a game's stats
      • Delete a game's stats
    • List games
    • Query Games
    • Popular Games
  • lists
    • liked games lists
      • List all lists
      • Retrieve a list
      • Like a game
      • Update a list
      • Remove game from list
    • played games lists
      • List all played games
      • Retrieve a played game
      • Add a played game
      • Update a played game
      • Remove a played game
    • personalized lists
      • List all lists
      • Retrieve a list
      • Create a list
      • Add game to list
      • Update a list
      • Delete a list
      • Remove game from list
  • reviews
    • List all reviews
    • List all reviews by game
    • Retrieve a review
    • Create a review
    • Like a review
    • Update a review
    • Delete a review
  • ratings
    • List all ratings
    • List all ratings by game
    • Retrieve a rating
    • Retrieve the overall rating of a game
    • Create a rating
    • Update a rating
    • Delete a rating
  • residents
    • lists
      • liked games lists
        • List all lists
        • Retrieve a list
        • Like a game
        • Update a list
        • Remove game from list
      • played games lists
        • List all played games
        • Retrieve a played game
        • Add a played game
        • Update a played game
        • Remove a played game
      • personalized lists
        • List all lists
        • Retrieve a list
        • Create a list
        • Add game to list
        • Update a list
        • Delete a list
        • Remove game from list
    • reviews
      • List all reviews
      • List all reviews by game
      • Retrieve a review
      • Add a review
      • Update a review
      • Delete a review
    • ratings
      • List all ratings
      • List all ratings by game
      • Retrieve a rating
      • Retrieve the overall rating of a game
      • Add a rating
      • Update a rating
      • Delete a rating
    • List all residents
    • Retrieve resident profile
    • Create a resident
    • Update a resident
    • Delete a resident
  • roles
    • List all roles
    • Retrieve a role
    • Create a role
    • Update a role
    • Delete a role
  • waitlist
    • List all waitlists
    • Retrieve a waitlist
    • Create a waitlist
    • Update a waitlist
    • Delete a waitlist
    • List all waitlists entries
    • List a waitlist's entries
    • Retrieve a waitlist entry
    • Join a waitlist
    • Update a waitlist entry
    • Leave a waitlist
  • Schemas
    • Pagination
    • List
    • Date Metadata
    • Game Stats
    • Deleted Item
    • List Item
    • Achievement
    • Activity Log
    • Backlog
    • Badge
    • Blog
    • Blog with Author
    • Changelog
    • Feedback
    • Rating
    • Resident
    • Resident Basic Info
    • Review
    • Role
    • Subscription
    • Subscription Offer
    • Waitlist
    • Waitlist Entry
    • Waitlist with Entries
  1. badges

Update a badge

Tested
PATCH
/v1/badges/{slug}
badges
Last modified:2026-03-26 05:39:41
Maintainer:Not configured

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Path Params

Header Params

Body Params application/json

Example
{
    "slug": "string",
    "name": "string",
    "description": "string",
    "rarity": "COMMON",
    "icon_url": "string"
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PATCH 'http://localhost:4002/rest/v1/badges/founder' \
--header 'X-Nexus-Key: ' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "slug": "string",
    "name": "string",
    "description": "string",
    "rarity": "COMMON",
    "icon_url": "string"
}'

Responses

🟢200Success
application/json
Body

Example
{
    "id": "string",
    "slug": "string",
    "name": "string",
    "description": "string",
    "rarity": "COMMON",
    "icon_url": "string",
    "created_at": "2019-08-24T14:15:22.123Z",
    "updated_at": "2019-08-24T14:15:22.123Z"
}
🟠400Bad Request
🟠401Unathorized
🟠404Not Found
🔴500Server Error
Modified at 2026-03-26 05:39:41
Previous
Create a badge
Next
Delete a badge
Built with