-
Notifications
You must be signed in to change notification settings - Fork 198
API : Item Types
jimsafley edited this page May 22, 2013
·
7 revisions
Return data about the specified item type.
GET /item_types/:id
{
"id": 1,
"url": "/item_types/1",
"name": "Text",
"description": "A resource consisting primarily of words for reading.",
"elements": {"count": 10, "url": "/elements?item_type=1"},
"items": {"count": 100, "url": "/items?item_type=1"}
}
Return data about item types.
GET /item_types
- name: string
Create a new item.
POST /items
{
"name": "Text",
"description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit.",
"elements": [
{"id": 1},
{"id": 2}
]
}
Location: http://yourdomain.com/api/item_types/:id
An JSON representation of the newly created item type (see above).