34 lines
887 B
HTTP
34 lines
887 B
HTTP
#################################################
|
|
#
|
|
# Genres
|
|
#
|
|
|
|
GET http://localhost:4004/admin/Genres?
|
|
###
|
|
|
|
POST http://localhost:4004/admin/Genres?
|
|
Content-Type: application/json
|
|
|
|
{ "ID":100, "name":"Some Sample Genres...", "children":[
|
|
{ "ID":101, "name":"Cat", "children":[
|
|
{ "ID":102, "name":"Kitty", "children":[
|
|
{ "ID":103, "name":"Kitty Cat", "children":[
|
|
{ "ID":104, "name":"Aristocat" } ]},
|
|
{ "ID":105, "name":"Kitty Bat" } ]},
|
|
{ "ID":106, "name":"Catwoman", "children":[
|
|
{ "ID":107, "name":"Catalina" } ]} ]},
|
|
{ "ID":108, "name":"Catweazle" }
|
|
]}
|
|
###
|
|
|
|
GET http://localhost:4004/admin/Genres(100)?
|
|
# &$expand=children
|
|
# &$expand=children($expand=children($expand=children($expand=children)))
|
|
###
|
|
|
|
DELETE http://localhost:4004/admin/Genres(103)
|
|
###
|
|
|
|
DELETE http://localhost:4004/admin/Genres(100)
|
|
###
|