Skip to content

Instantly share code, notes, and snippets.

@shmurakami
Last active July 19, 2016 14:51
Show Gist options
  • Save shmurakami/337e4062967c386ba6d8f10d48b85b45 to your computer and use it in GitHub Desktop.
Save shmurakami/337e4062967c386ba6d8f10d48b85b45 to your computer and use it in GitHub Desktop.
{
"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