All URIs are relative to https://sprod1.lilacfdm.com/api
Method | HTTP request | Description |
---|---|---|
v1_validation_status_data_data_type_get | GET /v1/ValidationStatus/Data/{DataType} | |
v1_validation_status_data_field_data_type_get | GET /v1/ValidationStatus/DataField/{DataType} | |
v1_validation_status_data_field_value_data_type_field_name_get | GET /v1/ValidationStatus/DataFieldValue/{DataType}/{FieldName} | |
v1_validation_status_data_types_get | GET /v1/ValidationStatus/DataTypes |
FDMAPIDTOV1TabularDataTabularData v1_validation_status_data_data_type_get(data_type, fields=fields, max_rows=max_rows, filter=filter, order_by=order_by)
from __future__ import print_function
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint
# Configure API key authorization: apikey-v1
configuration = swagger_client.Configuration()
configuration.api_key['Authorization'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['Authorization'] = 'Bearer'
# create an instance of the API class
api_instance = swagger_client.ValidationApi(swagger_client.ApiClient(configuration))
data_type = 'data_type_example' # str |
fields = 'fields_example' # str | (optional)
max_rows = 56 # int | (optional)
filter = '' # str | (optional)
order_by = '' # str | (optional)
try:
api_response = api_instance.v1_validation_status_data_data_type_get(data_type, fields=fields, max_rows=max_rows, filter=filter, order_by=order_by)
pprint(api_response)
except ApiException as e:
print("Exception when calling ValidationApi->v1_validation_status_data_data_type_get: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
data_type | str | ||
fields | str | [optional] | |
max_rows | int | [optional] | |
filter | str | [optional] | |
order_by | str | [optional] |
FDMAPIDTOV1TabularDataTabularData
- Content-Type: Not defined
- Accept: text/plain, application/json, text/json, application/xml, text/xml, text/csv
[Back to top] [Back to API list] [Back to Model list] [Back to README]
list[FDMAPIDTOV1TabularDataDataTypeField] v1_validation_status_data_field_data_type_get(data_type)
from __future__ import print_function
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint
# Configure API key authorization: apikey-v1
configuration = swagger_client.Configuration()
configuration.api_key['Authorization'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['Authorization'] = 'Bearer'
# create an instance of the API class
api_instance = swagger_client.ValidationApi(swagger_client.ApiClient(configuration))
data_type = 'data_type_example' # str |
try:
api_response = api_instance.v1_validation_status_data_field_data_type_get(data_type)
pprint(api_response)
except ApiException as e:
print("Exception when calling ValidationApi->v1_validation_status_data_field_data_type_get: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
data_type | str |
list[FDMAPIDTOV1TabularDataDataTypeField]
- Content-Type: Not defined
- Accept: text/plain, application/json, text/json, application/xml, text/xml, text/csv
[Back to top] [Back to API list] [Back to Model list] [Back to README]
list[str] v1_validation_status_data_field_value_data_type_field_name_get(data_type, field_name, filter=filter)
from __future__ import print_function
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint
# Configure API key authorization: apikey-v1
configuration = swagger_client.Configuration()
configuration.api_key['Authorization'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['Authorization'] = 'Bearer'
# create an instance of the API class
api_instance = swagger_client.ValidationApi(swagger_client.ApiClient(configuration))
data_type = 'data_type_example' # str |
field_name = 'field_name_example' # str |
filter = '' # str | (optional)
try:
api_response = api_instance.v1_validation_status_data_field_value_data_type_field_name_get(data_type, field_name, filter=filter)
pprint(api_response)
except ApiException as e:
print("Exception when calling ValidationApi->v1_validation_status_data_field_value_data_type_field_name_get: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
data_type | str | ||
field_name | str | ||
filter | str | [optional] |
list[str]
- Content-Type: Not defined
- Accept: text/plain, application/json, text/json, application/xml, text/xml, text/csv
[Back to top] [Back to API list] [Back to Model list] [Back to README]
list[str] v1_validation_status_data_types_get()
from __future__ import print_function
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint
# Configure API key authorization: apikey-v1
configuration = swagger_client.Configuration()
configuration.api_key['Authorization'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['Authorization'] = 'Bearer'
# create an instance of the API class
api_instance = swagger_client.ValidationApi(swagger_client.ApiClient(configuration))
try:
api_response = api_instance.v1_validation_status_data_types_get()
pprint(api_response)
except ApiException as e:
print("Exception when calling ValidationApi->v1_validation_status_data_types_get: %s\n" % e)
This endpoint does not need any parameter.
list[str]
- Content-Type: Not defined
- Accept: text/plain, application/json, text/json, application/xml, text/xml, text/csv
[Back to top] [Back to API list] [Back to Model list] [Back to README]