Update Coin
POST/coins/:mint
Updates information about a specific coin by its mint address
Request
Path Parameters
mint stringrequired
The mint address of the coin
Query Parameters
user_id stringrequired
The user ID making the update (must be the coin owner)
- application/json
Body
required
description string
Possible values: <= 2500 characters
The description of the coin (max 2500 characters)
banner_image_url uri
URL for the coin's banner image
link_1 uri
Generic link URL for the coin
link_2 uri
Generic link URL for the coin
link_3 uri
Generic link URL for the coin
link_4 uri
Generic link URL for the coin
Responses
- 200
- 400
- 403
- 404
- 500
Success - Coin updated
- application/json
- Schema
- Example (from schema)
Schema
success boolean
Indicates if the update was successful
{
"success": true
}
Bad request - Invalid parameters or no fields provided
Forbidden - User does not own the coin
Not found - Coin does not exist
Server error
Loading...