GET /api/v1/<%= content_type.name.downcase %>/<id>
The token for your application.
The authorization token for your user.
The ID of the <%= content_type.name.downcase %> you're requesting.
The API only returns fields that have been answered by the user. If you wish to return all fields regardless of whether they have an answer or not, you can set include_blank_fields to true.
{ "id": 1, "name": "Some <%= content_type.name %>", "description": "A description of this page", <% unless content_type.name == Universe.name %> "universe": { "id": 134, "name": My Super Amazing Universe }, <% end %> "meta": { "created_at": "2020-02-01 08:24:20 UTC", "updated_at": "2020-02-09 06:57:12 UTC" }, "categories": [ { "id": 123, "label": "Overview", "fields": [ { "id": 123, "type": "text_area", "label": "Coolness factor", "value": "Off the charts" }, { "id": 124, "label": "Related Buildings", "type": "link", "value": [ { "id": 345, "type": "Building", "name": "The Office of Examples", }, ... ] }, ... ], }, ... ], "references": [TBD] }