feedback-status resource endpoint
URL: /assets/<id>/feedback-status.<format>
Supported Methods
| GET | Get the feedback status of the selected asset. |
| PUT | Set the feedback status of the selected asset. |
Resource Type
This endpoint returns an object of type FeedbackStatus.
- allowComments (boolean)
- true if new comments may be posted to the related asset, or false if no new comments are accepted.
- allowTrackback (boolean)
- true if new trackback pings may be posted to the related asset, or false if no new pings are accepted.
- showComments (boolean)
- true if comments should be displayed on the related asset's permalink page, or false if they should be hidden.
Client Library Methods for PHP
- Get the feedback status of the selected asset.
$tp->assets->getFeedbackStatus(array( # Required Parameters "id" => $id, ))- Set the feedback status of the selected asset.
$tp->assets->putFeedbackStatus(array( # Required Parameters "id" => $id, "payload" => $payload, ))