"_copyright": "Copyright (C) 2012 - 2013, Digium, Inc.",
"_author": "David M. Lee, II <dlee@digium.com>",
"_svn_revision": "$Revision$",
- "apiVersion": "0.0.1",
+ "apiVersion": "1.0.0",
"swaggerVersion": "1.1",
"basePath": "http://localhost:8088/stasis",
"resourcePath": "/api-docs/endpoints.{format}",
{
"httpMethod": "GET",
"summary": "List all endpoints.",
- "nickname": "getEndpoints",
+ "nickname": "list",
"responseClass": "List[Endpoint]"
}
]
{
"httpMethod": "GET",
"summary": "List available endoints for a given endpoint technology.",
- "nickname": "getEndpointsByTech",
+ "nickname": "listByTech",
"responseClass": "List[Endpoint]",
"parameters": [
{
"paramType": "path",
"dataType": "string"
}
+ ],
+ "errorResponses": [
+ {
+ "code": 404,
+ "reason": "Endpoints not found"
+ }
]
}
]
{
"httpMethod": "GET",
"summary": "Details for an endpoint.",
- "nickname": "getEndpoint",
+ "nickname": "get",
"responseClass": "Endpoint",
"parameters": [
{
"paramType": "path",
"dataType": "string"
}
+ ],
+ "errorResponses": [
+ {
+ "code": 404,
+ "reason": "Endpoints not found"
+ }
]
}
]