All URIs are relative to https://dev.osis.uclouvain.be/api/v1/parcours_doctoral
Method | HTTP request | Description |
---|---|---|
retrieve_scholarship | GET /references/scholarship/{uuid} |
Scholarship retrieve_scholarship(uuid)
Retrieves a scholarship
- Api Key Authentication (Token):
import time
import osis_parcours_doctoral_sdk
from osis_parcours_doctoral_sdk.api import references_api
from osis_parcours_doctoral_sdk.model.scholarship import Scholarship
from osis_parcours_doctoral_sdk.model.error import Error
from osis_parcours_doctoral_sdk.model.accepted_language_enum import AcceptedLanguageEnum
from pprint import pprint
# Defining the host is optional and defaults to https://dev.osis.uclouvain.be/api/v1/parcours_doctoral
# See configuration.py for a list of all supported configuration parameters.
configuration = osis_parcours_doctoral_sdk.Configuration(
host = "https://dev.osis.uclouvain.be/api/v1/parcours_doctoral"
)
# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.
# Configure API key authorization: Token
configuration.api_key['Token'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['Token'] = 'Bearer'
# Enter a context with an instance of the API client
with osis_parcours_doctoral_sdk.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = references_api.ReferencesApi(api_client)
uuid = "uuid_example" # str | A UUID string identifying this Bourse.
accept_language = AcceptedLanguageEnum("en") # AcceptedLanguageEnum | The header advertises which languages the client is able to understand, and which locale variant is preferred. (By languages, we mean natural languages, such as English, and not programming languages.) (optional)
x_user_first_name = "X-User-FirstName_example" # str | (optional)
x_user_last_name = "X-User-LastName_example" # str | (optional)
x_user_email = "X-User-Email_example" # str | (optional)
x_user_global_id = "X-User-GlobalID_example" # str | (optional)
# example passing only required values which don't have defaults set
try:
api_response = api_instance.retrieve_scholarship(uuid)
pprint(api_response)
except osis_parcours_doctoral_sdk.ApiException as e:
print("Exception when calling ReferencesApi->retrieve_scholarship: %s\n" % e)
# example passing only required values which don't have defaults set
# and optional values
try:
api_response = api_instance.retrieve_scholarship(uuid, accept_language=accept_language, x_user_first_name=x_user_first_name, x_user_last_name=x_user_last_name, x_user_email=x_user_email, x_user_global_id=x_user_global_id)
pprint(api_response)
except osis_parcours_doctoral_sdk.ApiException as e:
print("Exception when calling ReferencesApi->retrieve_scholarship: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
uuid | str | A UUID string identifying this Bourse. | |
accept_language | AcceptedLanguageEnum | The header advertises which languages the client is able to understand, and which locale variant is preferred. (By languages, we mean natural languages, such as English, and not programming languages.) | [optional] |
x_user_first_name | str | [optional] | |
x_user_last_name | str | [optional] | |
x_user_email | str | [optional] | |
x_user_global_id | str | [optional] |
- Content-Type: Not defined
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | - | |
400 | Bad request | - |
401 | Unauthorized | - |
404 | The specified resource was not found | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]