optimserverclientpython.ProjectInformationApi

All URIs are relative to https://dbos

Method HTTP request Description
get_project GET /project Gets the project information.

get_project

ProjectInformation get_project()

Gets the project information.

Gets the project information.

Example

from __future__ import print_function
import time
import optimserverclientpython
from optimserverclientpython.rest import ApiException
from pprint import pprint

# create an instance of the API class
api_instance = optimserverclientpython.ProjectInformationApi()

try:
    # Gets the project information.
    api_response = api_instance.get_project()
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ProjectInformationApi->get_project: %s\n" % e)

Parameters

This endpoint does not need any parameter.

Return type

ProjectInformation

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json, application/xml

[Back to top] [Back to API list] [Back to Model list] [Back to README]