get
GET /backend/api/blog HTTP/1.1
Host: 139.59.67.17
Authorization: text
Accept: */*
<?xml version="1.0"?>
<object>
	<status>1</status>
	<message>Successfully got blog list.</message>
</object>
delete
DELETE /backend/api/blog/{blogId} HTTP/1.1
Host: 139.59.67.17
Authorization: text
Accept: */*
<?xml version="1.0"?>
<object>
	<status>1</status>
	<message>Successfully deleted Blog</message>
</object>
get
GET /backend/api/blog-translation/blog/{blogId} HTTP/1.1
Host: 139.59.67.17
Authorization: text
Accept: */*
<?xml version="1.0"?>
<object>
	<status>1</status>
	<message>Successfully got blog translation detail.</message>
</object>
get
GET /backend/api/blog-category/blog-category-detail HTTP/1.1
Host: 139.59.67.17
Authorization: text
Accept: */*
<?xml version="1.0"?>
<object>
	<status>1</status>
	<message>Successfully got blog category detail.</message>
</object>
get
GET /backend/api/blog-category HTTP/1.1
Host: 139.59.67.17
Accept: */*
<?xml version="1.0"?>
<object>
	<status>1</status>
	<message>Successfully got the blog category list.</message>
</object>
post
POST /backend/api/blog-category HTTP/1.1
Host: 139.59.67.17
Authorization: text
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 15

"name='test'"
<?xml version="1.0"?>
<object>
	<status>1</status>
	<message>Successfully created new category.</message>
</object>
post
POST /backend/api/blog HTTP/1.1
Host: 139.59.67.17
Authorization: text
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 157

"title='test'&categoryId=2&description='<p>test</p>'&image=''&relatedBlogId=[9]&blogSlug='test'&metaTitle=''&metaContent=''&metaKeyword=''"
<?xml version="1.0"?>
<object>
	<status>1</status>
	<message>Successfully created new blog.</message>
</object>
put
PUT /backend/api/blog/{blogId} HTTP/1.1
Host: 139.59.67.17
Authorization: text
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 133

"title='test'&categoryId=2&description='<p>test</p>'&image=''&status=1&relatedBlogId=[9]&blogSlug='test'&blogId='52'"
<?xml version="1.0"?>
<object>
	<status>1</status>
	<message>Successfully updated blog.</message>
</object>
post
POST /backend/api/blog-translation/blog/{blogId} HTTP/1.1
Host: 139.59.67.17
Authorization: text
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 82

"blogTranslation=[{'languageId':57,'title':'test','description':'<p>test</p>'}]"
<?xml version="1.0"?>
<object>
	<status>1</status>
	<message>Successfully created new blog translation.</message>
</object>
put
PUT /backend/api/blog-category/update-blog-category-status/{blogCategoryId} HTTP/1.1
Host: 139.59.67.17
Authorization: text
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 32

"blogCategoryId=19&status=1"
<?xml version="1.0"?>
<object>
	<status>1</status>
	<message>Successfully updated blog category status.</message>
</object>
put
PUT /backend/api/blog-category/{blogCategoryId} HTTP/1.1
Host: 139.59.67.17
Authorization: text
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 45

"name='new categories'&blogCategoryId=14"
<?xml version="1.0"?>
<object>
	<status>1</status>
	<message>Successfully updated category.</message>
</object>