-
Notifications
You must be signed in to change notification settings - Fork 9
Data api resource endpoints
Yuji Takayama edited this page Jul 10, 2013
·
1 revision
| Property Name | Type | Data Type | Database Column | Private | Read Only | Description |
|---|---|---|---|---|---|---|
| component | Object | Y | The component (a.k.a plugin) of this endpoint. | |||
| component.id | value | string | Y | The ID of the component that contains this endpoint. | ||
| component.name | value | string | Y | The name of the component that contains this endpoint. | ||
| id | value | string | Y | The id of this endpoint. | ||
| route | value | string | Y | The route of this endpoint. | ||
| verb | value | string | Y | The verb of this endpoint. | ||
| version | value | string | Y | The version of this endpoint. | ||
| format | value | string | Y | The format of this endpoint. | ||
| resources | value | string | Y | The resources date of this trackback. |
{
"route": "/sites/:site_id/comments/:comment_id",
"id": "update_comment",
"verb": "PUT",
"version": 1,
"component": {
"id": "core",
"name": "Core"
},
"format": "html",
"resources": [
"comment"
]
}