Can I access Cloud Foundry REST API on Bluemix? If yes, how can I access it (cannot find any documentation)?
相关问题
- Design RESTful service with multiple ids
- How to refer to an external JSON file containing r
- Axios OPTIONS instead of POST Request. Express Res
- Plain (non-HTML) error pages in REST api
- Laravel 5.1 MethodNotAllowedHttpException on store
相关文章
- swagger3.0,版本的接口都没有了
- Got ActiveRecord::AssociationTypeMismatch on model
- Multiple parameters in AngularJS $resource GET
- Global Exception Handling in Jersey & Spring?
- Remove a route with IOperationFilter in SwashBuckl
- REST search interface and the idempotency of GET
- Swagger+Spring: is it possible to preserve the fie
- Swagger - Adding multiple security parameters to t
In order to access CF API you have to get the authentication token. Then add it to each request in the headers.
You can access the Cloud Foundry REST API on Bluemix as you would normally do with CF. In addition to that, if you need it and you are already familiar with cf curl you can take a look at the bluemix curl command. For example if you want to retrieve the information for all organizations of the current account:
Please see the Docs for more information.