Skip to content

dmi_open_data.forecastdata.DKSSForecastDataGRIBFilesApi

All URIs are relative to https://dmigw.govcloud.dk

Method HTTP request Description
get_dkssidw_features GET /v1/forecastdata/collections/dkss_idw/items Get forecast data features from the area \"Inner Danish Waters\"
get_dkssif_feature_by_id GET /v1/forecastdata/collections/dkss_if/items/{id} Get a single DKSS STAC feature
get_dkssif_features GET /v1/forecastdata/collections/dkss_if/items Get forecast data features from the area \"Roskilde/Isefjord\"
get_dksslb_feature_by_id GET /v1/forecastdata/collections/dkss_lb/items/{id} Get a single DKSS STAC feature
get_dksslb_features GET /v1/forecastdata/collections/dkss_lb/items Get forecast data features from the area \"Little Belt\"
get_dksslf_features GET /v1/forecastdata/collections/dkss_lf/items Get forecast data features from the area \"Limfjord\"
get_dkssnsb_feature_by_id GET /v1/forecastdata/collections/dkss_ws/items/{id} Get a single DKSS STAC feature
get_dkssnsb_feature_by_id1 GET /v1/forecastdata/collections/dkss_nsbs/items/{id} Get a single DKSS STAC feature
get_dkssnsb_feature_by_id2 GET /v1/forecastdata/collections/dkss_lf/items/{id} Get a single DKSS STAC feature
get_dkssnsb_feature_by_id3 GET /v1/forecastdata/collections/dkss_idw/items/{id} Get a single DKSS STAC feature
get_dkssnsbs_features GET /v1/forecastdata/collections/dkss_nsbs/items Get forecast data features from the area \"North Sea Baltic Sea\"
get_dkssws_features GET /v1/forecastdata/collections/dkss_ws/items Get forecast data features from the area \"Wadden Sea\"

get_dkssidw_features

FeatureCollection get_dkssidw_features(datetime=datetime, model_run=model_run, sortorder=sortorder, limit=limit, offset=offset, bbox=bbox, bbox_crs=bbox_crs)

Get forecast data features from the area \"Inner Danish Waters\"

Example

  • Api Key Authentication (api-key):
import dmi_open_data.forecastdata
from dmi_open_data.forecastdata.models.feature_collection import FeatureCollection
from dmi_open_data.forecastdata.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to https://dmigw.govcloud.dk
# See configuration.py for a list of all supported configuration parameters.
configuration = dmi_open_data.forecastdata.Configuration(
    host = "https://dmigw.govcloud.dk"
)

# 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: api-key
configuration.api_key['api-key'] = os.environ["API_KEY"]

# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['api-key'] = 'Bearer'

# Enter a context with an instance of the API client
with dmi_open_data.forecastdata.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = dmi_open_data.forecastdata.DKSSForecastDataGRIBFilesApi(api_client)
    datetime = 'datetime_example' # str | datetime searching as specified in https://docs.opengeospatial.org/is/17-069r3/17-069r3.html#_parameter_datetime  and dates as specified in RFC3339 https://tools.ietf.org/html/rfc3339. Returns the DKSS files for the forecast steps in the provided time range.  Note: The provided examples are most likely outdated, and contains no data. This is because DMI only provide forecast data for the last 2 days (optional)
    model_run = '22-02-2021T00:00:00Z' # str | Filter on time the forecast was calculated, ie. which run it was part of. Input must be RFC3339 https://tools.ietf.org/html/rfc3339 format.  The inputted timestamp must match exactly. The following examples are illustrative and will not return data, since DMI only provide DKSS forecast files for the last 2 days. (optional)
    sortorder = 'sortorder_example' # str | Ordering of returned results. Default is unsorted (optional)
    limit = 56 # int | Maximum number of results to return (optional)
    offset = 56 # int | number of results to skip before returning matching results (optional)
    bbox = [3.4] # List[float] | Select the DKSS files covering an area that intersects with the bounding box. All files in this collection covers the same area. This means you either hit all files in the collection, or you hit none. Bounding box search is required by the STAC API standard.  Specify bounding box by listing: southwesterly point (lon,lat) followed by northeasterly point (lon, lat) (optional)
    bbox_crs = 'https://www.opengis.net/def/crs/OGC/1.3/CRS84' # str | Which coordinate reference system to use. Only the CRS84 is supported (optional) (default to 'https://www.opengis.net/def/crs/OGC/1.3/CRS84')

    try:
        # Get forecast data features from the area \"Inner Danish Waters\"
        api_response = api_instance.get_dkssidw_features(datetime=datetime, model_run=model_run, sortorder=sortorder, limit=limit, offset=offset, bbox=bbox, bbox_crs=bbox_crs)
        print("The response of DKSSForecastDataGRIBFilesApi->get_dkssidw_features:\n")
        pprint(api_response)
    except Exception as e:
        print("Exception when calling DKSSForecastDataGRIBFilesApi->get_dkssidw_features: %s\n" % e)

Parameters

Name Type Description Notes
datetime str datetime searching as specified in https://docs.opengeospatial.org/is/17-069r3/17-069r3.html#_parameter_datetime and dates as specified in RFC3339 https://tools.ietf.org/html/rfc3339. Returns the DKSS files for the forecast steps in the provided time range. Note: The provided examples are most likely outdated, and contains no data. This is because DMI only provide forecast data for the last 2 days [optional]
model_run str Filter on time the forecast was calculated, ie. which run it was part of. Input must be RFC3339 https://tools.ietf.org/html/rfc3339 format. The inputted timestamp must match exactly. The following examples are illustrative and will not return data, since DMI only provide DKSS forecast files for the last 2 days. [optional]
sortorder str Ordering of returned results. Default is unsorted [optional]
limit int Maximum number of results to return [optional]
offset int number of results to skip before returning matching results [optional]
bbox List[float] Select the DKSS files covering an area that intersects with the bounding box. All files in this collection covers the same area. This means you either hit all files in the collection, or you hit none. Bounding box search is required by the STAC API standard. Specify bounding box by listing: southwesterly point (lon,lat) followed by northeasterly point (lon, lat) [optional]
bbox_crs str Which coordinate reference system to use. Only the CRS84 is supported [optional] [default to 'https://www.opengis.net/def/crs/OGC/1.3/CRS84']

Return type

FeatureCollection

Authorization

api-key

HTTP request headers

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

HTTP response details

Status code Description Response headers
200 Successful Operation -
4XX Client Error - The request contains bad syntax or cannot be fulfilled.<br/>The body will be structured using this format:<br/>{\"message\":\"the error message\", \"status\":\"the value of the HTTP response code, e.g. 400 or 404\", \"error\":\"the value of the HTTP response code phrase \"} -
5XX Server Error - The server failed to fulfill an apparently valid request.<br/>The body will be structured using this format:<br/>{\"message\":\"the error message\", \"status\":\"the value of the HTTP response code, e.g. 500 or 507\", \"error\":\"the value of the HTTP response code phrase \"} -

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

get_dkssif_feature_by_id

Feature get_dkssif_feature_by_id(id)

Get a single DKSS STAC feature

Example

  • Api Key Authentication (api-key):
import dmi_open_data.forecastdata
from dmi_open_data.forecastdata.models.feature import Feature
from dmi_open_data.forecastdata.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to https://dmigw.govcloud.dk
# See configuration.py for a list of all supported configuration parameters.
configuration = dmi_open_data.forecastdata.Configuration(
    host = "https://dmigw.govcloud.dk"
)

# 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: api-key
configuration.api_key['api-key'] = os.environ["API_KEY"]

# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['api-key'] = 'Bearer'

# Enter a context with an instance of the API client
with dmi_open_data.forecastdata.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = dmi_open_data.forecastdata.DKSSForecastDataGRIBFilesApi(api_client)
    id = 'id_example' # str | 

    try:
        # Get a single DKSS STAC feature
        api_response = api_instance.get_dkssif_feature_by_id(id)
        print("The response of DKSSForecastDataGRIBFilesApi->get_dkssif_feature_by_id:\n")
        pprint(api_response)
    except Exception as e:
        print("Exception when calling DKSSForecastDataGRIBFilesApi->get_dkssif_feature_by_id: %s\n" % e)

Parameters

Name Type Description Notes
id str

Return type

Feature

Authorization

api-key

HTTP request headers

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

HTTP response details

Status code Description Response headers
200 Successful Operation -
4XX Client Error - The request contains bad syntax or cannot be fulfilled.<br/>The body will be structured using this format:<br/>{\"message\":\"the error message\", \"status\":\"the value of the HTTP response code, e.g. 400 or 404\", \"error\":\"the value of the HTTP response code phrase \"} -
5XX Server Error - The server failed to fulfill an apparently valid request.<br/>The body will be structured using this format:<br/>{\"message\":\"the error message\", \"status\":\"the value of the HTTP response code, e.g. 500 or 507\", \"error\":\"the value of the HTTP response code phrase \"} -

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

get_dkssif_features

FeatureCollection get_dkssif_features(datetime=datetime, model_run=model_run, sortorder=sortorder, limit=limit, offset=offset, bbox=bbox, bbox_crs=bbox_crs)

Get forecast data features from the area \"Roskilde/Isefjord\"

Example

  • Api Key Authentication (api-key):
import dmi_open_data.forecastdata
from dmi_open_data.forecastdata.models.feature_collection import FeatureCollection
from dmi_open_data.forecastdata.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to https://dmigw.govcloud.dk
# See configuration.py for a list of all supported configuration parameters.
configuration = dmi_open_data.forecastdata.Configuration(
    host = "https://dmigw.govcloud.dk"
)

# 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: api-key
configuration.api_key['api-key'] = os.environ["API_KEY"]

# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['api-key'] = 'Bearer'

# Enter a context with an instance of the API client
with dmi_open_data.forecastdata.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = dmi_open_data.forecastdata.DKSSForecastDataGRIBFilesApi(api_client)
    datetime = 'datetime_example' # str | datetime searching as specified in https://docs.opengeospatial.org/is/17-069r3/17-069r3.html#_parameter_datetime  and dates as specified in RFC3339 https://tools.ietf.org/html/rfc3339. Returns the DKSS files for the forecast steps in the provided time range.  Note: The provided examples are most likely outdated, and contains no data. This is because DMI only provide forecast data for the last 2 days (optional)
    model_run = '22-02-2021T00:00:00Z' # str | Filter on time the forecast was calculated, ie. which run it was part of. Input must be RFC3339 https://tools.ietf.org/html/rfc3339 format.  The inputted timestamp must match exactly. The following examples are illustrative and will not return data, since DMI only provide DKSS forecast files for the last 2 days. (optional)
    sortorder = 'sortorder_example' # str | Ordering of returned results. Default is unsorted (optional)
    limit = 56 # int | Maximum number of results to return (optional)
    offset = 56 # int | number of results to skip before returning matching results (optional)
    bbox = [3.4] # List[float] | Select the DKSS files covering an area that intersects with the bounding box. All files in this collection covers the same area. This means you either hit all files in the collection, or you hit none. Bounding box search is required by the STAC API standard.  Specify bounding box by listing: southwesterly point (lon,lat) followed by northeasterly point (lon, lat) (optional)
    bbox_crs = 'https://www.opengis.net/def/crs/OGC/1.3/CRS84' # str | Which coordinate reference system to use. Only the CRS84 is supported (optional) (default to 'https://www.opengis.net/def/crs/OGC/1.3/CRS84')

    try:
        # Get forecast data features from the area \"Roskilde/Isefjord\"
        api_response = api_instance.get_dkssif_features(datetime=datetime, model_run=model_run, sortorder=sortorder, limit=limit, offset=offset, bbox=bbox, bbox_crs=bbox_crs)
        print("The response of DKSSForecastDataGRIBFilesApi->get_dkssif_features:\n")
        pprint(api_response)
    except Exception as e:
        print("Exception when calling DKSSForecastDataGRIBFilesApi->get_dkssif_features: %s\n" % e)

Parameters

Name Type Description Notes
datetime str datetime searching as specified in https://docs.opengeospatial.org/is/17-069r3/17-069r3.html#_parameter_datetime and dates as specified in RFC3339 https://tools.ietf.org/html/rfc3339. Returns the DKSS files for the forecast steps in the provided time range. Note: The provided examples are most likely outdated, and contains no data. This is because DMI only provide forecast data for the last 2 days [optional]
model_run str Filter on time the forecast was calculated, ie. which run it was part of. Input must be RFC3339 https://tools.ietf.org/html/rfc3339 format. The inputted timestamp must match exactly. The following examples are illustrative and will not return data, since DMI only provide DKSS forecast files for the last 2 days. [optional]
sortorder str Ordering of returned results. Default is unsorted [optional]
limit int Maximum number of results to return [optional]
offset int number of results to skip before returning matching results [optional]
bbox List[float] Select the DKSS files covering an area that intersects with the bounding box. All files in this collection covers the same area. This means you either hit all files in the collection, or you hit none. Bounding box search is required by the STAC API standard. Specify bounding box by listing: southwesterly point (lon,lat) followed by northeasterly point (lon, lat) [optional]
bbox_crs str Which coordinate reference system to use. Only the CRS84 is supported [optional] [default to 'https://www.opengis.net/def/crs/OGC/1.3/CRS84']

Return type

FeatureCollection

Authorization

api-key

HTTP request headers

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

HTTP response details

Status code Description Response headers
200 Successful Operation -
4XX Client Error - The request contains bad syntax or cannot be fulfilled.<br/>The body will be structured using this format:<br/>{\"message\":\"the error message\", \"status\":\"the value of the HTTP response code, e.g. 400 or 404\", \"error\":\"the value of the HTTP response code phrase \"} -
5XX Server Error - The server failed to fulfill an apparently valid request.<br/>The body will be structured using this format:<br/>{\"message\":\"the error message\", \"status\":\"the value of the HTTP response code, e.g. 500 or 507\", \"error\":\"the value of the HTTP response code phrase \"} -

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

get_dksslb_feature_by_id

Feature get_dksslb_feature_by_id(id)

Get a single DKSS STAC feature

Example

  • Api Key Authentication (api-key):
import dmi_open_data.forecastdata
from dmi_open_data.forecastdata.models.feature import Feature
from dmi_open_data.forecastdata.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to https://dmigw.govcloud.dk
# See configuration.py for a list of all supported configuration parameters.
configuration = dmi_open_data.forecastdata.Configuration(
    host = "https://dmigw.govcloud.dk"
)

# 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: api-key
configuration.api_key['api-key'] = os.environ["API_KEY"]

# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['api-key'] = 'Bearer'

# Enter a context with an instance of the API client
with dmi_open_data.forecastdata.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = dmi_open_data.forecastdata.DKSSForecastDataGRIBFilesApi(api_client)
    id = 'id_example' # str | 

    try:
        # Get a single DKSS STAC feature
        api_response = api_instance.get_dksslb_feature_by_id(id)
        print("The response of DKSSForecastDataGRIBFilesApi->get_dksslb_feature_by_id:\n")
        pprint(api_response)
    except Exception as e:
        print("Exception when calling DKSSForecastDataGRIBFilesApi->get_dksslb_feature_by_id: %s\n" % e)

Parameters

Name Type Description Notes
id str

Return type

Feature

Authorization

api-key

HTTP request headers

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

HTTP response details

Status code Description Response headers
200 Successful Operation -
4XX Client Error - The request contains bad syntax or cannot be fulfilled.<br/>The body will be structured using this format:<br/>{\"message\":\"the error message\", \"status\":\"the value of the HTTP response code, e.g. 400 or 404\", \"error\":\"the value of the HTTP response code phrase \"} -
5XX Server Error - The server failed to fulfill an apparently valid request.<br/>The body will be structured using this format:<br/>{\"message\":\"the error message\", \"status\":\"the value of the HTTP response code, e.g. 500 or 507\", \"error\":\"the value of the HTTP response code phrase \"} -

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

get_dksslb_features

FeatureCollection get_dksslb_features(datetime=datetime, model_run=model_run, sortorder=sortorder, limit=limit, offset=offset, bbox=bbox, bbox_crs=bbox_crs)

Get forecast data features from the area \"Little Belt\"

Example

  • Api Key Authentication (api-key):
import dmi_open_data.forecastdata
from dmi_open_data.forecastdata.models.feature_collection import FeatureCollection
from dmi_open_data.forecastdata.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to https://dmigw.govcloud.dk
# See configuration.py for a list of all supported configuration parameters.
configuration = dmi_open_data.forecastdata.Configuration(
    host = "https://dmigw.govcloud.dk"
)

# 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: api-key
configuration.api_key['api-key'] = os.environ["API_KEY"]

# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['api-key'] = 'Bearer'

# Enter a context with an instance of the API client
with dmi_open_data.forecastdata.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = dmi_open_data.forecastdata.DKSSForecastDataGRIBFilesApi(api_client)
    datetime = 'datetime_example' # str | datetime searching as specified in https://docs.opengeospatial.org/is/17-069r3/17-069r3.html#_parameter_datetime  and dates as specified in RFC3339 https://tools.ietf.org/html/rfc3339. Returns the DKSS files for the forecast steps in the provided time range.  Note: The provided examples are most likely outdated, and contains no data. This is because DMI only provide forecast data for the last 2 days (optional)
    model_run = '22-02-2021T00:00:00Z' # str | Filter on time the forecast was calculated, ie. which run it was part of. Input must be RFC3339 https://tools.ietf.org/html/rfc3339 format.  The inputted timestamp must match exactly. The following examples are illustrative and will not return data, since DMI only provide DKSS forecast files for the last 2 days. (optional)
    sortorder = 'sortorder_example' # str | Ordering of returned results. Default is unsorted (optional)
    limit = 56 # int | Maximum number of results to return (optional)
    offset = 56 # int | number of results to skip before returning matching results (optional)
    bbox = [3.4] # List[float] | Select the DKSS files covering an area that intersects with the bounding box. All files in this collection covers the same area. This means you either hit all files in the collection, or you hit none. Bounding box search is required by the STAC API standard.  Specify bounding box by listing: southwesterly point (lon,lat) followed by northeasterly point (lon, lat) (optional)
    bbox_crs = 'https://www.opengis.net/def/crs/OGC/1.3/CRS84' # str | Which coordinate reference system to use. Only the CRS84 is supported (optional) (default to 'https://www.opengis.net/def/crs/OGC/1.3/CRS84')

    try:
        # Get forecast data features from the area \"Little Belt\"
        api_response = api_instance.get_dksslb_features(datetime=datetime, model_run=model_run, sortorder=sortorder, limit=limit, offset=offset, bbox=bbox, bbox_crs=bbox_crs)
        print("The response of DKSSForecastDataGRIBFilesApi->get_dksslb_features:\n")
        pprint(api_response)
    except Exception as e:
        print("Exception when calling DKSSForecastDataGRIBFilesApi->get_dksslb_features: %s\n" % e)

Parameters

Name Type Description Notes
datetime str datetime searching as specified in https://docs.opengeospatial.org/is/17-069r3/17-069r3.html#_parameter_datetime and dates as specified in RFC3339 https://tools.ietf.org/html/rfc3339. Returns the DKSS files for the forecast steps in the provided time range. Note: The provided examples are most likely outdated, and contains no data. This is because DMI only provide forecast data for the last 2 days [optional]
model_run str Filter on time the forecast was calculated, ie. which run it was part of. Input must be RFC3339 https://tools.ietf.org/html/rfc3339 format. The inputted timestamp must match exactly. The following examples are illustrative and will not return data, since DMI only provide DKSS forecast files for the last 2 days. [optional]
sortorder str Ordering of returned results. Default is unsorted [optional]
limit int Maximum number of results to return [optional]
offset int number of results to skip before returning matching results [optional]
bbox List[float] Select the DKSS files covering an area that intersects with the bounding box. All files in this collection covers the same area. This means you either hit all files in the collection, or you hit none. Bounding box search is required by the STAC API standard. Specify bounding box by listing: southwesterly point (lon,lat) followed by northeasterly point (lon, lat) [optional]
bbox_crs str Which coordinate reference system to use. Only the CRS84 is supported [optional] [default to 'https://www.opengis.net/def/crs/OGC/1.3/CRS84']

Return type

FeatureCollection

Authorization

api-key

HTTP request headers

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

HTTP response details

Status code Description Response headers
200 Successful Operation -
4XX Client Error - The request contains bad syntax or cannot be fulfilled.<br/>The body will be structured using this format:<br/>{\"message\":\"the error message\", \"status\":\"the value of the HTTP response code, e.g. 400 or 404\", \"error\":\"the value of the HTTP response code phrase \"} -
5XX Server Error - The server failed to fulfill an apparently valid request.<br/>The body will be structured using this format:<br/>{\"message\":\"the error message\", \"status\":\"the value of the HTTP response code, e.g. 500 or 507\", \"error\":\"the value of the HTTP response code phrase \"} -

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

get_dksslf_features

FeatureCollection get_dksslf_features(datetime=datetime, model_run=model_run, sortorder=sortorder, limit=limit, offset=offset, bbox=bbox, bbox_crs=bbox_crs)

Get forecast data features from the area \"Limfjord\"

Example

  • Api Key Authentication (api-key):
import dmi_open_data.forecastdata
from dmi_open_data.forecastdata.models.feature_collection import FeatureCollection
from dmi_open_data.forecastdata.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to https://dmigw.govcloud.dk
# See configuration.py for a list of all supported configuration parameters.
configuration = dmi_open_data.forecastdata.Configuration(
    host = "https://dmigw.govcloud.dk"
)

# 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: api-key
configuration.api_key['api-key'] = os.environ["API_KEY"]

# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['api-key'] = 'Bearer'

# Enter a context with an instance of the API client
with dmi_open_data.forecastdata.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = dmi_open_data.forecastdata.DKSSForecastDataGRIBFilesApi(api_client)
    datetime = 'datetime_example' # str | datetime searching as specified in https://docs.opengeospatial.org/is/17-069r3/17-069r3.html#_parameter_datetime  and dates as specified in RFC3339 https://tools.ietf.org/html/rfc3339. Returns the DKSS files for the forecast steps in the provided time range.  Note: The provided examples are most likely outdated, and contains no data. This is because DMI only provide forecast data for the last 2 days (optional)
    model_run = '22-02-2021T00:00:00Z' # str | Filter on time the forecast was calculated, ie. which run it was part of. Input must be RFC3339 https://tools.ietf.org/html/rfc3339 format.  The inputted timestamp must match exactly. The following examples are illustrative and will not return data, since DMI only provide DKSS forecast files for the last 2 days. (optional)
    sortorder = 'sortorder_example' # str | Ordering of returned results. Default is unsorted (optional)
    limit = 56 # int | Maximum number of results to return (optional)
    offset = 56 # int | number of results to skip before returning matching results (optional)
    bbox = [3.4] # List[float] | Select the DKSS files covering an area that intersects with the bounding box. All files in this collection covers the same area. This means you either hit all files in the collection, or you hit none. Bounding box search is required by the STAC API standard.  Specify bounding box by listing: southwesterly point (lon,lat) followed by northeasterly point (lon, lat) (optional)
    bbox_crs = 'https://www.opengis.net/def/crs/OGC/1.3/CRS84' # str | Which coordinate reference system to use. Only the CRS84 is supported (optional) (default to 'https://www.opengis.net/def/crs/OGC/1.3/CRS84')

    try:
        # Get forecast data features from the area \"Limfjord\"
        api_response = api_instance.get_dksslf_features(datetime=datetime, model_run=model_run, sortorder=sortorder, limit=limit, offset=offset, bbox=bbox, bbox_crs=bbox_crs)
        print("The response of DKSSForecastDataGRIBFilesApi->get_dksslf_features:\n")
        pprint(api_response)
    except Exception as e:
        print("Exception when calling DKSSForecastDataGRIBFilesApi->get_dksslf_features: %s\n" % e)

Parameters

Name Type Description Notes
datetime str datetime searching as specified in https://docs.opengeospatial.org/is/17-069r3/17-069r3.html#_parameter_datetime and dates as specified in RFC3339 https://tools.ietf.org/html/rfc3339. Returns the DKSS files for the forecast steps in the provided time range. Note: The provided examples are most likely outdated, and contains no data. This is because DMI only provide forecast data for the last 2 days [optional]
model_run str Filter on time the forecast was calculated, ie. which run it was part of. Input must be RFC3339 https://tools.ietf.org/html/rfc3339 format. The inputted timestamp must match exactly. The following examples are illustrative and will not return data, since DMI only provide DKSS forecast files for the last 2 days. [optional]
sortorder str Ordering of returned results. Default is unsorted [optional]
limit int Maximum number of results to return [optional]
offset int number of results to skip before returning matching results [optional]
bbox List[float] Select the DKSS files covering an area that intersects with the bounding box. All files in this collection covers the same area. This means you either hit all files in the collection, or you hit none. Bounding box search is required by the STAC API standard. Specify bounding box by listing: southwesterly point (lon,lat) followed by northeasterly point (lon, lat) [optional]
bbox_crs str Which coordinate reference system to use. Only the CRS84 is supported [optional] [default to 'https://www.opengis.net/def/crs/OGC/1.3/CRS84']

Return type

FeatureCollection

Authorization

api-key

HTTP request headers

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

HTTP response details

Status code Description Response headers
200 Successful Operation -
4XX Client Error - The request contains bad syntax or cannot be fulfilled.<br/>The body will be structured using this format:<br/>{\"message\":\"the error message\", \"status\":\"the value of the HTTP response code, e.g. 400 or 404\", \"error\":\"the value of the HTTP response code phrase \"} -
5XX Server Error - The server failed to fulfill an apparently valid request.<br/>The body will be structured using this format:<br/>{\"message\":\"the error message\", \"status\":\"the value of the HTTP response code, e.g. 500 or 507\", \"error\":\"the value of the HTTP response code phrase \"} -

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

get_dkssnsb_feature_by_id

Feature get_dkssnsb_feature_by_id(id)

Get a single DKSS STAC feature

Example

  • Api Key Authentication (api-key):
import dmi_open_data.forecastdata
from dmi_open_data.forecastdata.models.feature import Feature
from dmi_open_data.forecastdata.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to https://dmigw.govcloud.dk
# See configuration.py for a list of all supported configuration parameters.
configuration = dmi_open_data.forecastdata.Configuration(
    host = "https://dmigw.govcloud.dk"
)

# 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: api-key
configuration.api_key['api-key'] = os.environ["API_KEY"]

# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['api-key'] = 'Bearer'

# Enter a context with an instance of the API client
with dmi_open_data.forecastdata.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = dmi_open_data.forecastdata.DKSSForecastDataGRIBFilesApi(api_client)
    id = 'id_example' # str | 

    try:
        # Get a single DKSS STAC feature
        api_response = api_instance.get_dkssnsb_feature_by_id(id)
        print("The response of DKSSForecastDataGRIBFilesApi->get_dkssnsb_feature_by_id:\n")
        pprint(api_response)
    except Exception as e:
        print("Exception when calling DKSSForecastDataGRIBFilesApi->get_dkssnsb_feature_by_id: %s\n" % e)

Parameters

Name Type Description Notes
id str

Return type

Feature

Authorization

api-key

HTTP request headers

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

HTTP response details

Status code Description Response headers
200 Successful Operation -
4XX Client Error - The request contains bad syntax or cannot be fulfilled.<br/>The body will be structured using this format:<br/>{\"message\":\"the error message\", \"status\":\"the value of the HTTP response code, e.g. 400 or 404\", \"error\":\"the value of the HTTP response code phrase \"} -
5XX Server Error - The server failed to fulfill an apparently valid request.<br/>The body will be structured using this format:<br/>{\"message\":\"the error message\", \"status\":\"the value of the HTTP response code, e.g. 500 or 507\", \"error\":\"the value of the HTTP response code phrase \"} -

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

get_dkssnsb_feature_by_id1

Feature get_dkssnsb_feature_by_id1(id)

Get a single DKSS STAC feature

Example

  • Api Key Authentication (api-key):
import dmi_open_data.forecastdata
from dmi_open_data.forecastdata.models.feature import Feature
from dmi_open_data.forecastdata.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to https://dmigw.govcloud.dk
# See configuration.py for a list of all supported configuration parameters.
configuration = dmi_open_data.forecastdata.Configuration(
    host = "https://dmigw.govcloud.dk"
)

# 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: api-key
configuration.api_key['api-key'] = os.environ["API_KEY"]

# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['api-key'] = 'Bearer'

# Enter a context with an instance of the API client
with dmi_open_data.forecastdata.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = dmi_open_data.forecastdata.DKSSForecastDataGRIBFilesApi(api_client)
    id = 'id_example' # str | 

    try:
        # Get a single DKSS STAC feature
        api_response = api_instance.get_dkssnsb_feature_by_id1(id)
        print("The response of DKSSForecastDataGRIBFilesApi->get_dkssnsb_feature_by_id1:\n")
        pprint(api_response)
    except Exception as e:
        print("Exception when calling DKSSForecastDataGRIBFilesApi->get_dkssnsb_feature_by_id1: %s\n" % e)

Parameters

Name Type Description Notes
id str

Return type

Feature

Authorization

api-key

HTTP request headers

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

HTTP response details

Status code Description Response headers
200 Successful Operation -
4XX Client Error - The request contains bad syntax or cannot be fulfilled.<br/>The body will be structured using this format:<br/>{\"message\":\"the error message\", \"status\":\"the value of the HTTP response code, e.g. 400 or 404\", \"error\":\"the value of the HTTP response code phrase \"} -
5XX Server Error - The server failed to fulfill an apparently valid request.<br/>The body will be structured using this format:<br/>{\"message\":\"the error message\", \"status\":\"the value of the HTTP response code, e.g. 500 or 507\", \"error\":\"the value of the HTTP response code phrase \"} -

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

get_dkssnsb_feature_by_id2

Feature get_dkssnsb_feature_by_id2(id)

Get a single DKSS STAC feature

Example

  • Api Key Authentication (api-key):
import dmi_open_data.forecastdata
from dmi_open_data.forecastdata.models.feature import Feature
from dmi_open_data.forecastdata.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to https://dmigw.govcloud.dk
# See configuration.py for a list of all supported configuration parameters.
configuration = dmi_open_data.forecastdata.Configuration(
    host = "https://dmigw.govcloud.dk"
)

# 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: api-key
configuration.api_key['api-key'] = os.environ["API_KEY"]

# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['api-key'] = 'Bearer'

# Enter a context with an instance of the API client
with dmi_open_data.forecastdata.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = dmi_open_data.forecastdata.DKSSForecastDataGRIBFilesApi(api_client)
    id = 'id_example' # str | 

    try:
        # Get a single DKSS STAC feature
        api_response = api_instance.get_dkssnsb_feature_by_id2(id)
        print("The response of DKSSForecastDataGRIBFilesApi->get_dkssnsb_feature_by_id2:\n")
        pprint(api_response)
    except Exception as e:
        print("Exception when calling DKSSForecastDataGRIBFilesApi->get_dkssnsb_feature_by_id2: %s\n" % e)

Parameters

Name Type Description Notes
id str

Return type

Feature

Authorization

api-key

HTTP request headers

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

HTTP response details

Status code Description Response headers
200 Successful Operation -
4XX Client Error - The request contains bad syntax or cannot be fulfilled.<br/>The body will be structured using this format:<br/>{\"message\":\"the error message\", \"status\":\"the value of the HTTP response code, e.g. 400 or 404\", \"error\":\"the value of the HTTP response code phrase \"} -
5XX Server Error - The server failed to fulfill an apparently valid request.<br/>The body will be structured using this format:<br/>{\"message\":\"the error message\", \"status\":\"the value of the HTTP response code, e.g. 500 or 507\", \"error\":\"the value of the HTTP response code phrase \"} -

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

get_dkssnsb_feature_by_id3

Feature get_dkssnsb_feature_by_id3(id)

Get a single DKSS STAC feature

Example

  • Api Key Authentication (api-key):
import dmi_open_data.forecastdata
from dmi_open_data.forecastdata.models.feature import Feature
from dmi_open_data.forecastdata.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to https://dmigw.govcloud.dk
# See configuration.py for a list of all supported configuration parameters.
configuration = dmi_open_data.forecastdata.Configuration(
    host = "https://dmigw.govcloud.dk"
)

# 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: api-key
configuration.api_key['api-key'] = os.environ["API_KEY"]

# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['api-key'] = 'Bearer'

# Enter a context with an instance of the API client
with dmi_open_data.forecastdata.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = dmi_open_data.forecastdata.DKSSForecastDataGRIBFilesApi(api_client)
    id = 'id_example' # str | 

    try:
        # Get a single DKSS STAC feature
        api_response = api_instance.get_dkssnsb_feature_by_id3(id)
        print("The response of DKSSForecastDataGRIBFilesApi->get_dkssnsb_feature_by_id3:\n")
        pprint(api_response)
    except Exception as e:
        print("Exception when calling DKSSForecastDataGRIBFilesApi->get_dkssnsb_feature_by_id3: %s\n" % e)

Parameters

Name Type Description Notes
id str

Return type

Feature

Authorization

api-key

HTTP request headers

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

HTTP response details

Status code Description Response headers
200 Successful Operation -
4XX Client Error - The request contains bad syntax or cannot be fulfilled.<br/>The body will be structured using this format:<br/>{\"message\":\"the error message\", \"status\":\"the value of the HTTP response code, e.g. 400 or 404\", \"error\":\"the value of the HTTP response code phrase \"} -
5XX Server Error - The server failed to fulfill an apparently valid request.<br/>The body will be structured using this format:<br/>{\"message\":\"the error message\", \"status\":\"the value of the HTTP response code, e.g. 500 or 507\", \"error\":\"the value of the HTTP response code phrase \"} -

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

get_dkssnsbs_features

FeatureCollection get_dkssnsbs_features(datetime=datetime, model_run=model_run, sortorder=sortorder, limit=limit, offset=offset, bbox=bbox, bbox_crs=bbox_crs)

Get forecast data features from the area \"North Sea Baltic Sea\"

Example

  • Api Key Authentication (api-key):
import dmi_open_data.forecastdata
from dmi_open_data.forecastdata.models.feature_collection import FeatureCollection
from dmi_open_data.forecastdata.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to https://dmigw.govcloud.dk
# See configuration.py for a list of all supported configuration parameters.
configuration = dmi_open_data.forecastdata.Configuration(
    host = "https://dmigw.govcloud.dk"
)

# 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: api-key
configuration.api_key['api-key'] = os.environ["API_KEY"]

# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['api-key'] = 'Bearer'

# Enter a context with an instance of the API client
with dmi_open_data.forecastdata.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = dmi_open_data.forecastdata.DKSSForecastDataGRIBFilesApi(api_client)
    datetime = 'datetime_example' # str | datetime searching as specified in https://docs.opengeospatial.org/is/17-069r3/17-069r3.html#_parameter_datetime  and dates as specified in RFC3339 https://tools.ietf.org/html/rfc3339. Returns the DKSS files for the forecast steps in the provided time range.  Note: The provided examples are most likely outdated, and contains no data. This is because DMI only provide forecast data for the last 2 days (optional)
    model_run = '22-02-2021T00:00:00Z' # str | Filter on time the forecast was calculated, ie. which run it was part of. Input must be RFC3339 https://tools.ietf.org/html/rfc3339 format.  The inputted timestamp must match exactly. The following examples are illustrative and will not return data, since DMI only provide DKSS forecast files for the last 2 days. (optional)
    sortorder = 'sortorder_example' # str | Ordering of returned results. Default is unsorted (optional)
    limit = 56 # int | Maximum number of results to return (optional)
    offset = 56 # int | number of results to skip before returning matching results (optional)
    bbox = [3.4] # List[float] | Select the DKSS files covering an area that intersects with the bounding box. All files in this collection covers the same area. This means you either hit all files in the collection, or you hit none. Bounding box search is required by the STAC API standard.  Specify bounding box by listing: southwesterly point (lon,lat) followed by northeasterly point (lon, lat) (optional)
    bbox_crs = 'https://www.opengis.net/def/crs/OGC/1.3/CRS84' # str | Which coordinate reference system to use. Only the CRS84 is supported (optional) (default to 'https://www.opengis.net/def/crs/OGC/1.3/CRS84')

    try:
        # Get forecast data features from the area \"North Sea Baltic Sea\"
        api_response = api_instance.get_dkssnsbs_features(datetime=datetime, model_run=model_run, sortorder=sortorder, limit=limit, offset=offset, bbox=bbox, bbox_crs=bbox_crs)
        print("The response of DKSSForecastDataGRIBFilesApi->get_dkssnsbs_features:\n")
        pprint(api_response)
    except Exception as e:
        print("Exception when calling DKSSForecastDataGRIBFilesApi->get_dkssnsbs_features: %s\n" % e)

Parameters

Name Type Description Notes
datetime str datetime searching as specified in https://docs.opengeospatial.org/is/17-069r3/17-069r3.html#_parameter_datetime and dates as specified in RFC3339 https://tools.ietf.org/html/rfc3339. Returns the DKSS files for the forecast steps in the provided time range. Note: The provided examples are most likely outdated, and contains no data. This is because DMI only provide forecast data for the last 2 days [optional]
model_run str Filter on time the forecast was calculated, ie. which run it was part of. Input must be RFC3339 https://tools.ietf.org/html/rfc3339 format. The inputted timestamp must match exactly. The following examples are illustrative and will not return data, since DMI only provide DKSS forecast files for the last 2 days. [optional]
sortorder str Ordering of returned results. Default is unsorted [optional]
limit int Maximum number of results to return [optional]
offset int number of results to skip before returning matching results [optional]
bbox List[float] Select the DKSS files covering an area that intersects with the bounding box. All files in this collection covers the same area. This means you either hit all files in the collection, or you hit none. Bounding box search is required by the STAC API standard. Specify bounding box by listing: southwesterly point (lon,lat) followed by northeasterly point (lon, lat) [optional]
bbox_crs str Which coordinate reference system to use. Only the CRS84 is supported [optional] [default to 'https://www.opengis.net/def/crs/OGC/1.3/CRS84']

Return type

FeatureCollection

Authorization

api-key

HTTP request headers

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

HTTP response details

Status code Description Response headers
200 Successful Operation -
4XX Client Error - The request contains bad syntax or cannot be fulfilled.<br/>The body will be structured using this format:<br/>{\"message\":\"the error message\", \"status\":\"the value of the HTTP response code, e.g. 400 or 404\", \"error\":\"the value of the HTTP response code phrase \"} -
5XX Server Error - The server failed to fulfill an apparently valid request.<br/>The body will be structured using this format:<br/>{\"message\":\"the error message\", \"status\":\"the value of the HTTP response code, e.g. 500 or 507\", \"error\":\"the value of the HTTP response code phrase \"} -

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

get_dkssws_features

FeatureCollection get_dkssws_features(datetime=datetime, model_run=model_run, sortorder=sortorder, limit=limit, offset=offset, bbox=bbox, bbox_crs=bbox_crs)

Get forecast data features from the area \"Wadden Sea\"

Example

  • Api Key Authentication (api-key):
import dmi_open_data.forecastdata
from dmi_open_data.forecastdata.models.feature_collection import FeatureCollection
from dmi_open_data.forecastdata.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to https://dmigw.govcloud.dk
# See configuration.py for a list of all supported configuration parameters.
configuration = dmi_open_data.forecastdata.Configuration(
    host = "https://dmigw.govcloud.dk"
)

# 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: api-key
configuration.api_key['api-key'] = os.environ["API_KEY"]

# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['api-key'] = 'Bearer'

# Enter a context with an instance of the API client
with dmi_open_data.forecastdata.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = dmi_open_data.forecastdata.DKSSForecastDataGRIBFilesApi(api_client)
    datetime = 'datetime_example' # str | datetime searching as specified in https://docs.opengeospatial.org/is/17-069r3/17-069r3.html#_parameter_datetime  and dates as specified in RFC3339 https://tools.ietf.org/html/rfc3339. Returns the DKSS files for the forecast steps in the provided time range.  Note: The provided examples are most likely outdated, and contains no data. This is because DMI only provide forecast data for the last 2 days (optional)
    model_run = '22-02-2021T00:00:00Z' # str | Filter on time the forecast was calculated, ie. which run it was part of. Input must be RFC3339 https://tools.ietf.org/html/rfc3339 format.  The inputted timestamp must match exactly. The following examples are illustrative and will not return data, since DMI only provide DKSS forecast files for the last 2 days. (optional)
    sortorder = 'sortorder_example' # str | Ordering of returned results. Default is unsorted (optional)
    limit = 56 # int | Maximum number of results to return (optional)
    offset = 56 # int | number of results to skip before returning matching results (optional)
    bbox = [3.4] # List[float] | Select the DKSS files covering an area that intersects with the bounding box. All files in this collection covers the same area. This means you either hit all files in the collection, or you hit none. Bounding box search is required by the STAC API standard.  Specify bounding box by listing: southwesterly point (lon,lat) followed by northeasterly point (lon, lat) (optional)
    bbox_crs = 'https://www.opengis.net/def/crs/OGC/1.3/CRS84' # str | Which coordinate reference system to use. Only the CRS84 is supported (optional) (default to 'https://www.opengis.net/def/crs/OGC/1.3/CRS84')

    try:
        # Get forecast data features from the area \"Wadden Sea\"
        api_response = api_instance.get_dkssws_features(datetime=datetime, model_run=model_run, sortorder=sortorder, limit=limit, offset=offset, bbox=bbox, bbox_crs=bbox_crs)
        print("The response of DKSSForecastDataGRIBFilesApi->get_dkssws_features:\n")
        pprint(api_response)
    except Exception as e:
        print("Exception when calling DKSSForecastDataGRIBFilesApi->get_dkssws_features: %s\n" % e)

Parameters

Name Type Description Notes
datetime str datetime searching as specified in https://docs.opengeospatial.org/is/17-069r3/17-069r3.html#_parameter_datetime and dates as specified in RFC3339 https://tools.ietf.org/html/rfc3339. Returns the DKSS files for the forecast steps in the provided time range. Note: The provided examples are most likely outdated, and contains no data. This is because DMI only provide forecast data for the last 2 days [optional]
model_run str Filter on time the forecast was calculated, ie. which run it was part of. Input must be RFC3339 https://tools.ietf.org/html/rfc3339 format. The inputted timestamp must match exactly. The following examples are illustrative and will not return data, since DMI only provide DKSS forecast files for the last 2 days. [optional]
sortorder str Ordering of returned results. Default is unsorted [optional]
limit int Maximum number of results to return [optional]
offset int number of results to skip before returning matching results [optional]
bbox List[float] Select the DKSS files covering an area that intersects with the bounding box. All files in this collection covers the same area. This means you either hit all files in the collection, or you hit none. Bounding box search is required by the STAC API standard. Specify bounding box by listing: southwesterly point (lon,lat) followed by northeasterly point (lon, lat) [optional]
bbox_crs str Which coordinate reference system to use. Only the CRS84 is supported [optional] [default to 'https://www.opengis.net/def/crs/OGC/1.3/CRS84']

Return type

FeatureCollection

Authorization

api-key

HTTP request headers

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

HTTP response details

Status code Description Response headers
200 Successful Operation -
4XX Client Error - The request contains bad syntax or cannot be fulfilled.<br/>The body will be structured using this format:<br/>{\"message\":\"the error message\", \"status\":\"the value of the HTTP response code, e.g. 400 or 404\", \"error\":\"the value of the HTTP response code phrase \"} -
5XX Server Error - The server failed to fulfill an apparently valid request.<br/>The body will be structured using this format:<br/>{\"message\":\"the error message\", \"status\":\"the value of the HTTP response code, e.g. 500 or 507\", \"error\":\"the value of the HTTP response code phrase \"} -

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