Last active
July 19, 2016 14:51
-
-
Save shmurakami/337e4062967c386ba6d8f10d48b85b45 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"swagger": "2.0", | |
"info": { | |
"title": "ReFUEL4 API", | |
"version": "0.0.1" | |
}, | |
"paths": { | |
"/advertisers/{advertiserId}/adsets": { | |
"get": { | |
"summary": "get Facebook AdSet list", | |
"produces": [ | |
"application/json" | |
], | |
"parameters": [ | |
{ | |
"name": "advertiserId", | |
"in": "path", | |
"description": "Advertiser ID", | |
"required": true, | |
"type": "integer" | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "user data" | |
}, | |
"400": { | |
"description": "invalid advertiserId or AdSet not found" | |
} | |
} | |
} | |
}, | |
"/me": { | |
"get": { | |
"summary": "get user information", | |
"responses": { | |
"200": { | |
"description": "user data" | |
} | |
} | |
} | |
} | |
}, | |
"definitions": {} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment