/company
GET /company/$company_id
Returns a company details
{
"company": {
"id": 4,
"name": "innosabi GmbH",
"images": {
"companyLogo": {
"link": {
"href": "[API]/media/company/4",
"type": "image/jpeg"
}
}
},
"imprint": null,
"created": "2013-04-02T16:24:35+02:00",
"updated": "2013-04-02T16:24:35+02:00",
"deleted": null
}
}
/suggestion
GET /suggestion/$suggestion_id
Returns a suggestion object.
If the corresponding project is for closed communities, the object will only be shown to authorized users.
{
"id": 2,
"content": "Neuer Testvorschlag",
"user": { USER PUBLIC OBJECT },
"language": "de_DE",
"created": "2013-02-18T09:21:45+01:00",
"updated": "2013-02-18T21:31:48+01:00",
"deleted": "2013-02-19T12:28:16+01:00"
"comments": { COMMENT OBJECT },
"votes": { TO BE IMPLEMENTED },
"media": { TO BE IMPLEMENTED },
}