SlideShare a Scribd company logo
1 of 10
API Specification Doc
( YUHN API v0.3)
Version Date Author Description
0.1 09/10/2013 ThuongNV Initial
0.3 09/25/2013 AnhNvt Update
Table of Contents
1) GET EVENTS 3
REQUEST 3
RESPONSE 3
2) GET POSTS // UPDATE 4
REQUEST 4
RESPONSE 4
3) GET LIST ALBUM //NEW 5
REQUEST 5
RESPONSE 5
4) GET ALBUM CONTENT // UPDATE 6
REQUEST 6
RESPONSE 6
5) GET SURVEY //UPDATE 7
REQUEST 7
6) GET QUESTION OF A SURVEY //UPDATE 7
REQUEST 8
7) GET GALLERY OF EVENT / 8
CONVENTIONS 9
STATUS CODES <NO USE> 10
Methods
1) Get events
Lấy thông tin danh sách các sự kiện ,sắp xếp theo thứ tự từ mới đến cũ.
Request
Params Value
data {handle:”on_get_events”,”page”:1}
Response
Status Response
200 An array of events.
[
{ "EventID":99,
"EventTitle":"",
"EventDescription":"",
"EventContent":"webview Link",
"Location":"",
"TimeStart":"10/09/2013 10:20:20",
"TimeEnd":"10/09/2013 10:20:20",
"TimeCreate":"10/09/2013 10:20:20",
“Image”:http://www.img.com,
“ImageThumb”:” img url”,
“UserCreate”:””,
"Avatar": "https://abc.xyz.com”, //Thieu
"FullName": "Nguyễn Duy Đức" //Thieu
“FeedID”:”123”, //Thieu
“Views”:12,
“Status”:1,
}, {},{},..
]
404 {"error":"no event found"}
2) Get Posts // Update
Lấy thông tin danh sách các bài viết
Request
Params Values
Data {handle:”on_get_posts”,”page”:1}
Response
Status Response
200 An array posts of category
[
{ "PostID":1,
“PostTitle”:””,
"PostDescription":"http://abc.com/image.jpg",
“PostContent”:”infor of content”,
“DateCreate”:”20/10/2013”,
“Image”:” http://abc.com/image.jpg”,
“ImageThumb”:” http://abc.com/image.jpg”,
“Views”:123
“Status”:1,
“FeedID”:”12312312”,
“UserCreate”:12, //Thieu
"Avatar": "https://abc.xyz.com”,
"FullName": "Nguyễn Duy Đức"
}, {},{},..
]
404 {"error”: “no gallery not found"}
3) Get list album //New
Lấy thong tin hình ảnh, video của media
Request
Params Values
Data {handle:”on_get_medias”}
Response
Status Response
200 1 arrays of medias.
[
{ "MediaID":1,
"MediaTitlte":””,
"MediaDescription”:”Description of the album”,
“Views”:15,
“Images”:””,
“ImagesThumb”:” http://abc.com/image.jpg”,
“Status”:1,
“AccountCreate”:””,
"Avatar": "https://abc.xyz.com”,
"FullName": "Nguyễn Duy Đức",
“DateCreate”:”20/10/2013”
}, {},{},..
]
404 {"error”: “No album found"}
4) Get album content // Update
Lấy tất cả hình ảnh, video của 1 album
Request
Params Values
Data {handle:" on_get_mediadetail”, "MediaID":123}
Response
Status Response
200 2 arrays of images and videos.
[
{ "MediaDetailID":1,
"MediaDetailTitle":””,
"MediaLink":123,
“MediaID”:12,
"MediaType”:1, //1:Ạnh,2:Video
"DateCreate”:””,
“Status”:1,
“FeedID”:”12312312”, //New
“AccountCreate”:123,
"Avatar": "https://abc.xyz.com”, //New
"FullName": "Nguyễn Duy Đức", //New
}, {},{},..
]
404 {"error”: “No media found"}
5) Get survey //OK
Lấy thông tin danh sách các cuộc thi của một sự kiện nào đó
Request
Params Values
data {handle:”on_get_survey”,”EventID”:1}
Status Response
200 Array surveys òf a event
[{
"SurveyID":1,
"SurveyTitle":"cuoc thi tim hieu ve HCM",
"SurveyDescription":"cuoc thi tim hieu ve HCM",
“Image”:1,
“ImageThumb”:” http://abc.com/image.jpg”
“Joins”:111,
“Status”:1
},{},{},…
]
404 {"error”: “No survet found"}
6) Get question of a survey //Update
Lấy thông tin danh sách các câu hỏi của 1 cuộc thi nào đó
Request
Params Values
data {handle:”on_get_question”,”SurveyID”:1}
Status Response
200 Array questions of a survey
[{
"QuestionID":1,
"QuestionTitle":"Cau hoi 1",
"QuestionType":1,
"SurveyID":1,
“Status”:1,
“Answers”: //New
[{
“AnswerID”:1,
“AnswersTitle”:””,
},{},{},…
]
},{},{},…
]
404 {"error”: “No question found"}
7) Get gallery of Event
Lấy tất cả hình ảnh, video của 1 su kien
Request
Params Values
Data {handle:" on_get_eventmedia”, "EventID":123}
Response
Status Response
200 2 arrays of images and videos.
[
{ "MediaID":1,
"MediaTitle":””,
"MediaType":123,
“EventID”:12,
"MediaDescription”:1, //1:Ạnh,2:Video
"DateCreate”:””,
“Views”:1,
“Image”:””,
"ImageThumb": "https://abc.xyz.com”,
"FullName": "Nguyễn Duy Đức",
“Status”:1
}, {},{},..
]
404 {"error”: “No media found"}
Glossary
Conventions
● Client - Client application.
● Status - HTTP status code of response.
● All the possible responses are listed under ‘Responses’ for each method. Only one of them
is issued per request server.
● All response is in JSON format.
● All request parameters are mandatory unless explicitly marked as [optional]
● The type of values accepted for a request parameter are shown the values column like this
[10|<any number>] .The | symbol means OR. If the parameter is [optional], the
default value is shown in blue bold text, as 10 are written in [10|<any number>].
Status Codes <No Use>
All status codes are standard HTTP status codes. The below ones are used in this API.
2XX - Success of some kind
4XX - Error occurred in client’s part
5XX - Error occurred in server’s part
Status Code Description
200 OK
201 Created
202 Accepted (Request accepted, and queued for execution)
400 Bad request
401 Authentication failure
403 Forbidden
404 Resource not found
405 Method Not Allowed
409 Conflict
412 Precondition Failed
413 Request Entity Too Large
500 Internal Server Error
501 Not Implemented
503 Service Unavailable

More Related Content

What's hot

第49回Php勉強会@関東 Datasource
第49回Php勉強会@関東 Datasource第49回Php勉強会@関東 Datasource
第49回Php勉強会@関東 Datasource
Kaz Watanabe
 
[제1회 루씬 한글분석기 기술세미나] solr로 나만의 검색엔진을 만들어보자
[제1회 루씬 한글분석기 기술세미나] solr로 나만의 검색엔진을 만들어보자[제1회 루씬 한글분석기 기술세미나] solr로 나만의 검색엔진을 만들어보자
[제1회 루씬 한글분석기 기술세미나] solr로 나만의 검색엔진을 만들어보자
Donghyeok Kang
 

What's hot (20)

php plus mysql
php plus mysqlphp plus mysql
php plus mysql
 
H base programming
H base programmingH base programming
H base programming
 
Solr's Search Relevancy (Understand Solr's query debug)
Solr's Search Relevancy (Understand Solr's query debug)Solr's Search Relevancy (Understand Solr's query debug)
Solr's Search Relevancy (Understand Solr's query debug)
 
第49回Php勉強会@関東 Datasource
第49回Php勉強会@関東 Datasource第49回Php勉強会@関東 Datasource
第49回Php勉強会@関東 Datasource
 
What's new in Liferay Mobile SDK 2.0 for Android
What's new in Liferay Mobile SDK 2.0 for AndroidWhat's new in Liferay Mobile SDK 2.0 for Android
What's new in Liferay Mobile SDK 2.0 for Android
 
Spring Data for KSDG 2012/09
Spring Data for KSDG 2012/09Spring Data for KSDG 2012/09
Spring Data for KSDG 2012/09
 
FlashAir Android App Development
FlashAir Android App DevelopmentFlashAir Android App Development
FlashAir Android App Development
 
[제1회 루씬 한글분석기 기술세미나] solr로 나만의 검색엔진을 만들어보자
[제1회 루씬 한글분석기 기술세미나] solr로 나만의 검색엔진을 만들어보자[제1회 루씬 한글분석기 기술세미나] solr로 나만의 검색엔진을 만들어보자
[제1회 루씬 한글분석기 기술세미나] solr로 나만의 검색엔진을 만들어보자
 
6 things about perl 6
6 things about perl 66 things about perl 6
6 things about perl 6
 
Gta v savegame
Gta v savegameGta v savegame
Gta v savegame
 
Building Real Time Systems on MongoDB Using the Oplog at Stripe
Building Real Time Systems on MongoDB Using the Oplog at StripeBuilding Real Time Systems on MongoDB Using the Oplog at Stripe
Building Real Time Systems on MongoDB Using the Oplog at Stripe
 
Php
PhpPhp
Php
 
Building Real Time Systems on MongoDB Using the Oplog at Stripe
Building Real Time Systems on MongoDB Using the Oplog at StripeBuilding Real Time Systems on MongoDB Using the Oplog at Stripe
Building Real Time Systems on MongoDB Using the Oplog at Stripe
 
Database Design Patterns
Database Design PatternsDatabase Design Patterns
Database Design Patterns
 
Debugging: Rules And Tools - PHPTek 11 Version
Debugging: Rules And Tools - PHPTek 11 VersionDebugging: Rules And Tools - PHPTek 11 Version
Debugging: Rules And Tools - PHPTek 11 Version
 
WordPressでIoTをはじめよう
WordPressでIoTをはじめようWordPressでIoTをはじめよう
WordPressでIoTをはじめよう
 
ES6
ES6ES6
ES6
 
Silex meets SOAP & REST
Silex meets SOAP & RESTSilex meets SOAP & REST
Silex meets SOAP & REST
 
The History of PHPersistence
The History of PHPersistenceThe History of PHPersistence
The History of PHPersistence
 
Teaching Your Machine To Find Fraudsters
Teaching Your Machine To Find FraudstersTeaching Your Machine To Find Fraudsters
Teaching Your Machine To Find Fraudsters
 

Viewers also liked

3 comuniquemos la pastoral de la salud
3 comuniquemos la pastoral de la salud3 comuniquemos la pastoral de la salud
3 comuniquemos la pastoral de la salud
Pastoral Salud
 
Pro_Tools_Tier_1 cert
Pro_Tools_Tier_1 certPro_Tools_Tier_1 cert
Pro_Tools_Tier_1 cert
Travis Felker
 
Pro_Tools_Tier_4_Post
Pro_Tools_Tier_4_PostPro_Tools_Tier_4_Post
Pro_Tools_Tier_4_Post
Martin Gray
 

Viewers also liked (13)

Get the most out of Analytics – 5 Power Ups for Your Ecommerce Site
Get the most out of Analytics – 5 Power Ups for Your Ecommerce SiteGet the most out of Analytics – 5 Power Ups for Your Ecommerce Site
Get the most out of Analytics – 5 Power Ups for Your Ecommerce Site
 
Intercomunicadores para Moto Bluetooth
 Intercomunicadores para Moto Bluetooth Intercomunicadores para Moto Bluetooth
Intercomunicadores para Moto Bluetooth
 
ما هو المكتب العلمى
ما هو المكتب العلمىما هو المكتب العلمى
ما هو المكتب العلمى
 
EasyMove Pedales Multifuncionales
EasyMove Pedales MultifuncionalesEasyMove Pedales Multifuncionales
EasyMove Pedales Multifuncionales
 
SGResume ver 3.4.001 R
SGResume ver 3.4.001 RSGResume ver 3.4.001 R
SGResume ver 3.4.001 R
 
Valores para educar
Valores para educarValores para educar
Valores para educar
 
Etika bisnis
Etika bisnisEtika bisnis
Etika bisnis
 
materia de informatica
materia de informaticamateria de informatica
materia de informatica
 
Persuasive Essay
Persuasive EssayPersuasive Essay
Persuasive Essay
 
3 comuniquemos la pastoral de la salud
3 comuniquemos la pastoral de la salud3 comuniquemos la pastoral de la salud
3 comuniquemos la pastoral de la salud
 
Pro_Tools_Tier_1 cert
Pro_Tools_Tier_1 certPro_Tools_Tier_1 cert
Pro_Tools_Tier_1 cert
 
Pro_Tools_Tier_4_Post
Pro_Tools_Tier_4_PostPro_Tools_Tier_4_Post
Pro_Tools_Tier_4_Post
 
Camára grabador DVR con detección de movimiento manual
Camára grabador DVR con detección de movimiento manualCamára grabador DVR con detección de movimiento manual
Camára grabador DVR con detección de movimiento manual
 

Similar to Api docs v3.0

Api docs v4.0
Api docs v4.0Api docs v4.0
Api docs v4.0
Anh Tuan
 
Introducing Amplify
Introducing AmplifyIntroducing Amplify
Introducing Amplify
appendTo
 
Taking Advantage of the SharePoint 2013 REST API
Taking Advantage of the SharePoint 2013 REST APITaking Advantage of the SharePoint 2013 REST API
Taking Advantage of the SharePoint 2013 REST API
Eric Shupps
 
CouchDB on Android
CouchDB on AndroidCouchDB on Android
CouchDB on Android
Sven Haiges
 

Similar to Api docs v3.0 (20)

Api docs v4.0
Api docs v4.0Api docs v4.0
Api docs v4.0
 
Jersey
JerseyJersey
Jersey
 
Postman Collection Format v2.0 (pre-draft)
Postman Collection Format v2.0 (pre-draft)Postman Collection Format v2.0 (pre-draft)
Postman Collection Format v2.0 (pre-draft)
 
Introducing Amplify
Introducing AmplifyIntroducing Amplify
Introducing Amplify
 
Taking Advantage of the SharePoint 2013 REST API
Taking Advantage of the SharePoint 2013 REST APITaking Advantage of the SharePoint 2013 REST API
Taking Advantage of the SharePoint 2013 REST API
 
Persisting Data on SQLite using Room
Persisting Data on SQLite using RoomPersisting Data on SQLite using Room
Persisting Data on SQLite using Room
 
URLProtocol
URLProtocolURLProtocol
URLProtocol
 
Finch.io - Purely Functional REST API with Finagle
Finch.io - Purely Functional REST API with FinagleFinch.io - Purely Functional REST API with Finagle
Finch.io - Purely Functional REST API with Finagle
 
Developing application for Windows Phone 7 in TDD
Developing application for Windows Phone 7 in TDDDeveloping application for Windows Phone 7 in TDD
Developing application for Windows Phone 7 in TDD
 
Test driven development with behat and silex
Test driven development with behat and silexTest driven development with behat and silex
Test driven development with behat and silex
 
behat
behatbehat
behat
 
Leveraging parse.com for Speedy Development
Leveraging parse.com for Speedy DevelopmentLeveraging parse.com for Speedy Development
Leveraging parse.com for Speedy Development
 
CouchDB on Android
CouchDB on AndroidCouchDB on Android
CouchDB on Android
 
REST meets Semantic Web
REST meets Semantic WebREST meets Semantic Web
REST meets Semantic Web
 
Dpilot Source Code With ScreenShots
Dpilot Source Code With ScreenShots Dpilot Source Code With ScreenShots
Dpilot Source Code With ScreenShots
 
Dpilot - Source Code with Snapshots
Dpilot - Source Code with SnapshotsDpilot - Source Code with Snapshots
Dpilot - Source Code with Snapshots
 
Source Code for Dpilot
Source Code for Dpilot Source Code for Dpilot
Source Code for Dpilot
 
Jason parsing
Jason parsingJason parsing
Jason parsing
 
Mary Had a Little λ (QCon)
Mary Had a Little λ (QCon)Mary Had a Little λ (QCon)
Mary Had a Little λ (QCon)
 
Understanding backbonejs
Understanding backbonejsUnderstanding backbonejs
Understanding backbonejs
 

Recently uploaded

Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Safe Software
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
panagenda
 

Recently uploaded (20)

Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
HTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation StrategiesHTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation Strategies
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
Manulife - Insurer Innovation Award 2024
Manulife - Insurer Innovation Award 2024Manulife - Insurer Innovation Award 2024
Manulife - Insurer Innovation Award 2024
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 

Api docs v3.0

  • 1. API Specification Doc ( YUHN API v0.3) Version Date Author Description 0.1 09/10/2013 ThuongNV Initial 0.3 09/25/2013 AnhNvt Update
  • 2. Table of Contents 1) GET EVENTS 3 REQUEST 3 RESPONSE 3 2) GET POSTS // UPDATE 4 REQUEST 4 RESPONSE 4 3) GET LIST ALBUM //NEW 5 REQUEST 5 RESPONSE 5 4) GET ALBUM CONTENT // UPDATE 6 REQUEST 6 RESPONSE 6 5) GET SURVEY //UPDATE 7 REQUEST 7 6) GET QUESTION OF A SURVEY //UPDATE 7 REQUEST 8 7) GET GALLERY OF EVENT / 8 CONVENTIONS 9 STATUS CODES <NO USE> 10
  • 3. Methods 1) Get events Lấy thông tin danh sách các sự kiện ,sắp xếp theo thứ tự từ mới đến cũ. Request Params Value data {handle:”on_get_events”,”page”:1} Response Status Response 200 An array of events.
  • 4. [ { "EventID":99, "EventTitle":"", "EventDescription":"", "EventContent":"webview Link", "Location":"", "TimeStart":"10/09/2013 10:20:20", "TimeEnd":"10/09/2013 10:20:20", "TimeCreate":"10/09/2013 10:20:20", “Image”:http://www.img.com, “ImageThumb”:” img url”, “UserCreate”:””, "Avatar": "https://abc.xyz.com”, //Thieu "FullName": "Nguyễn Duy Đức" //Thieu “FeedID”:”123”, //Thieu “Views”:12, “Status”:1, }, {},{},.. ] 404 {"error":"no event found"} 2) Get Posts // Update Lấy thông tin danh sách các bài viết Request Params Values Data {handle:”on_get_posts”,”page”:1} Response Status Response 200 An array posts of category [ { "PostID":1, “PostTitle”:””,
  • 5. "PostDescription":"http://abc.com/image.jpg", “PostContent”:”infor of content”, “DateCreate”:”20/10/2013”, “Image”:” http://abc.com/image.jpg”, “ImageThumb”:” http://abc.com/image.jpg”, “Views”:123 “Status”:1, “FeedID”:”12312312”, “UserCreate”:12, //Thieu "Avatar": "https://abc.xyz.com”, "FullName": "Nguyễn Duy Đức" }, {},{},.. ] 404 {"error”: “no gallery not found"} 3) Get list album //New Lấy thong tin hình ảnh, video của media Request Params Values Data {handle:”on_get_medias”} Response Status Response 200 1 arrays of medias. [ { "MediaID":1, "MediaTitlte":””, "MediaDescription”:”Description of the album”, “Views”:15, “Images”:””, “ImagesThumb”:” http://abc.com/image.jpg”, “Status”:1, “AccountCreate”:””,
  • 6. "Avatar": "https://abc.xyz.com”, "FullName": "Nguyễn Duy Đức", “DateCreate”:”20/10/2013” }, {},{},.. ] 404 {"error”: “No album found"} 4) Get album content // Update Lấy tất cả hình ảnh, video của 1 album Request Params Values Data {handle:" on_get_mediadetail”, "MediaID":123} Response Status Response 200 2 arrays of images and videos. [ { "MediaDetailID":1, "MediaDetailTitle":””, "MediaLink":123, “MediaID”:12, "MediaType”:1, //1:Ạnh,2:Video "DateCreate”:””, “Status”:1, “FeedID”:”12312312”, //New “AccountCreate”:123, "Avatar": "https://abc.xyz.com”, //New "FullName": "Nguyễn Duy Đức", //New }, {},{},.. ]
  • 7. 404 {"error”: “No media found"} 5) Get survey //OK Lấy thông tin danh sách các cuộc thi của một sự kiện nào đó Request Params Values data {handle:”on_get_survey”,”EventID”:1} Status Response 200 Array surveys òf a event [{ "SurveyID":1, "SurveyTitle":"cuoc thi tim hieu ve HCM", "SurveyDescription":"cuoc thi tim hieu ve HCM", “Image”:1, “ImageThumb”:” http://abc.com/image.jpg” “Joins”:111, “Status”:1 },{},{},… ] 404 {"error”: “No survet found"} 6) Get question of a survey //Update Lấy thông tin danh sách các câu hỏi của 1 cuộc thi nào đó
  • 8. Request Params Values data {handle:”on_get_question”,”SurveyID”:1} Status Response 200 Array questions of a survey [{ "QuestionID":1, "QuestionTitle":"Cau hoi 1", "QuestionType":1, "SurveyID":1, “Status”:1, “Answers”: //New [{ “AnswerID”:1, “AnswersTitle”:””, },{},{},… ] },{},{},… ] 404 {"error”: “No question found"} 7) Get gallery of Event Lấy tất cả hình ảnh, video của 1 su kien Request
  • 9. Params Values Data {handle:" on_get_eventmedia”, "EventID":123} Response Status Response 200 2 arrays of images and videos. [ { "MediaID":1, "MediaTitle":””, "MediaType":123, “EventID”:12, "MediaDescription”:1, //1:Ạnh,2:Video "DateCreate”:””, “Views”:1, “Image”:””, "ImageThumb": "https://abc.xyz.com”, "FullName": "Nguyễn Duy Đức", “Status”:1 }, {},{},.. ] 404 {"error”: “No media found"} Glossary Conventions ● Client - Client application. ● Status - HTTP status code of response. ● All the possible responses are listed under ‘Responses’ for each method. Only one of them is issued per request server. ● All response is in JSON format. ● All request parameters are mandatory unless explicitly marked as [optional]
  • 10. ● The type of values accepted for a request parameter are shown the values column like this [10|<any number>] .The | symbol means OR. If the parameter is [optional], the default value is shown in blue bold text, as 10 are written in [10|<any number>]. Status Codes <No Use> All status codes are standard HTTP status codes. The below ones are used in this API. 2XX - Success of some kind 4XX - Error occurred in client’s part 5XX - Error occurred in server’s part Status Code Description 200 OK 201 Created 202 Accepted (Request accepted, and queued for execution) 400 Bad request 401 Authentication failure 403 Forbidden 404 Resource not found 405 Method Not Allowed 409 Conflict 412 Precondition Failed 413 Request Entity Too Large 500 Internal Server Error 501 Not Implemented 503 Service Unavailable