API Method /venues/comments/modify
Modifies the text of a comment attached to a venue. See http://eventful.com/venues/V0-001-000111066-8 for an example interface.
Arguments
- authentication
- This method requires user authentication.
- comment_id string
- The ID of the comment to modify.
- comment string
- The new, modified comment to save.
Example Request
Here's an example request URL:
http://api.evdb.com/rest/venues/comments/modify?...&comment_id=...&comment=This+comment+has+been+modified
Output Parameters
Output from this function is an XML block with the following constructs:
- status string
- ok
- messagestring
- Comment modified successfully.
Example XML Response
<?xml version="1.0" encoding="UTF-8"?>
<response status="ok">
<message>Comment modified successfully.</message>
</response>
Error Codes
This method may return these errors in an error document:
- Authentication error
- The specified user was not found or provided invalid credentials.
- Missing parameter
- A mandatory field was not provided.