Retrieve a Single Workspace
This endpoint will return the requested workspace (“application”) as a single JSON object.
GET /openapi/v1/applications/{application_id}
Parameters: The request URL contains the following parameters
Name |
Type |
Description |
---|---|---|
application_id |
string |
The unique identifier for the workspace. |
Response object: Returns the workspace object for the specified ID.
Sample python code
application_id = '5d02b493755f0237a3d6e078'
restclient.get('/applications/%s' % application_id)