GET /api/sc/instances

Operation:
GET /api/sc/instances
Description:
Returns a collection of service instances. The instances returned may be across different geographic locations. The instances can be filtered by region or by plan id or a combination of both. The authentication token determines the list of the instances that will be returned for the user.

To filter by region, add the query parameter filter=region=={region-id}
To filter by planId, add the query parameter filter=planId=={plan-id}

In both cases, make sure to escape the entire query parameter value. For example, you would escape the region=={region-id} portion, or the planId=={plan-id} portion. The URL should end up looking like:

 /api/sc/instances?filter=planId%3D%3D{plan-id}
 /api/sc/plans?filter=region%3D%3D{region id}
 
Since:
5.7
Input parameters
Consume media type(s):
None
Input type:
None
Output parameters
an instance of InstanceListType

Produce media type(s):
application/json;version=5.7
application/xml;version=5.7
Output type:
InstanceListType
Examples