Services
Blog HTTP / REST service:
/api/blog
Secured version: /api/restricted/blog
Username: kennedy and Password: super_lockdown
Username: kennedy and Password: super_lockdown
You can reset your private data if you want to start fresh:
Reset my data
Reset my data
Operations:
-
GET: /api/blog
returns all blog posts for a given client. -
GET: /api/blog/{id}
returns a single blog post for that id (per client data). -
POST: /api/blog/
Creates a new blog post (per client data). -
PUT: /api/blog/{id}
Updates a single blog post for that id (per client data). -
DELETE: /api/blog/{id}
Deletes a single blog post for that id (per client data).
Blog SOAP service:
/soap?wsdl
Operations:
-
Post[] AllPosts()
returns all blog posts for a given client. -
Post GetPost(string id)
returns a single blog post for that id (per client data). -
Post CreatePost(string title, string content, int viewCount)
Creates a new blog post (per client data). -
Post UpdatePost(string id, string title, string content, int viewCount)
Updates a single blog post for that id (per client data). -
void DeletePost(string id)
Delete a single blog post for that id (per client data).