Create a comment
POST
/fundraisers/{fundraiserId}/comments
Creates a comment (or reply) on a fundraiser. The author is derived from the authenticated user. Content is required and must be 2000 characters or less.
Authorizations
BearerAuth
Authentication is handled automatically via httpOnly session cookies after signing in at /cognito/signin or via Google SSO at /cognito/oauth/google. For Swagger UI testing, paste a JWT token from the /cognito/signin response.
Type
HTTP (bearer)
Parameters
Path Parameters
fundraiserId*
Type
Requiredstring
Format
"uuid"Request Body
application/json
JSON
{
"content": "string",
"parent_comment_id": "string"
}
Responses
Comment created
application/json
JSON
{
"data": {
}
}