POST
/api/v1/smart_trades/:id/set_note
Permission: SMART_TRADES_WRITESecurity: SIGNED
Attaches or updates a custom text note for an existing SmartTrade. Notes are useful for logging strategy reasons, tracking trade conditions, or annotating bot-driven actions.
Path Parameter
idinteger required
Unique Quentrade ID for this SmartTrade entity.
Body Parameters
notestring required
minlength: 1maxlength: 300
Custom text note for this SmartTrade entity. Limited to a maximum of 300 characters.
Response Parameters
If successful, the response includes an updated copy of the SmartTrade entity with the updated note field.
Example Request
set_note_request.json
POST /api/v1/smart_trades/:id/set_noteExample Responses
Returns HTTP 201 Created on success, 400 Bad Request on invalid payload or length > 300 characters, 401 Unauthorized if authentication fails, or 404 Not Found if ID is invalid.
set_note_201.json
201 Created