REST interface for BPD-related resources - Resource Environment Providers Resource Resource - GET Method
Returns a list containing the names of all the available resource environment providers.
Sample method invocation
GET /rest/bpm/wle/v1/system/rep/
Parameters
None
Request content
None
Response content
The resource environment provider names are returned in a JSON string array.
The default content type is application/json.
Error Response content
Detailed error information.
The default content type is application/json.
MIME type: application/json
Schema
{ "description": "WLE Error Response",
"type": "object",
"properties":
{ "status": {"type": "string",
"description": "The status of the previous API call."
},
"exceptionType": {"type": "string",
"description": "The classname associated with the exception."
},
"errorNumber": {"type": "string",
"description": "Message ID of the exception."
},
"errorMessage": {"type": "string",
"description": "Message text of the exception."
},
"errorMessageParameters": {"type": ["string"], "optional": true,
"description":"Message text parameters of the exception."
},
"programmersDetails": {"type": "object", "optional": true,
"description":"Additional exception details, for example, a stack trace."
}
}
}
Status codes
- The method returns one of the following status codes:
Code Description 200 OK Success completion. 400 Bad Request The parameters are not valid or they are missing. 406 Not Acceptable The requested content type or content encoding is not supported. 500 Internal Server Error A severe problem has occurred, programmer's details are provided.
Available since
8.0.1
Parent Topic: Resource Environment Providers Resource Resource