Retrieve a Particular Service
GET /v2/services/:guid
Request
Route
GET /v2/services/2b4bc8c9-fccd-454f-87d4-1ee17a5819b8
Body
Name |
Description |
Default |
Valid Values |
Example Values |
guid
|
The guid of the service
|
|
|
|
label
|
The name of the service
|
|
|
|
description
|
A short blurb describing the service
|
|
|
- Mysql stores things for you
|
long_description
|
A longer description of the service
|
|
|
- Mysql is a database. It stores things. Use it in your apps...
|
info_url
|
A url that points to an info page for the service
|
|
|
- http://info.somemysqlservice.com
|
documentation_url
|
A url that points to a documentation page for the service
|
|
|
- http://docs.somemysqlservice.com
|
timeout
|
A timeout used by the v1 service gateway client
|
|
|
|
active
|
A boolean describing that the service can be provisioned by users
|
false
|
|
|
bindable
|
A boolean describing that the service can be bound to applications
|
true
|
|
|
extra
|
A JSON field with extra data pertaining to the service
|
|
|
- {"providerDisplayName": "MyServiceProvider"}
|
unique_id
|
A guid that identifies the service with the broker (not the same as the guid above)
|
|
|
|
tags
|
A list of tags for the service
|
[]
|
|
|
requires
|
A list of dependencies for services
|
[]
|
|
|
provider
|
The name of the service provider (used only by v1 service gateways)
|
|
|
|
version
|
The version of the service (used only by v1 service gateways)
|
|
|
|
url
|
The url of ther service provider (used only by v1 service gateways)
|
|
|
|
service_broker_guid
|
The guid of the v2 service broker associated with the service
|
|
|
|
plan_updateable
|
A boolean describing that an instance of this service can be updated to a different plan
|
false
|
|
|
Headers
cURL
curl "https://api.[your-domain.com]/v2/services/2b4bc8c9-fccd-454f-87d4-1ee17a5819b8" -X GET \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTI5NSIsImVtYWlsIjoiZW1haWwtMjQxQHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0MzI3NzQ5OTZ9._Qvy-8ogzCKVl_DIYjXnvtDC65g0Tw75ZzOwNVx7dqs" \
-H "Host: example.org" \
-H "Cookie: "
Response
Status
200 OK
Body
{
"metadata": {
"guid": "2b4bc8c9-fccd-454f-87d4-1ee17a5819b8",
"url": "/v2/services/2b4bc8c9-fccd-454f-87d4-1ee17a5819b8",
"created_at": "2015-05-21T01:03:16Z",
"updated_at": null
},
"entity": {
"label": "label-76",
"provider": null,
"url": null,
"description": "desc-211",
"long_description": null,
"version": null,
"info_url": null,
"active": true,
"bindable": true,
"unique_id": "eb1e2e63-5509-4863-80cb-07b55e38d518",
"extra": null,
"tags": [
],
"requires": [
],
"documentation_url": null,
"service_broker_guid": "2807204c-376f-4a72-b04e-ad08f0f95153",
"plan_updateable": false,
"service_plans_url": "/v2/services/2b4bc8c9-fccd-454f-87d4-1ee17a5819b8/service_plans"
}
}
Headers