All URIs are relative to https://sprod1.lilacfdm.com/api
Method | HTTP request | Description |
---|---|---|
v1_flows_flow_data_flow_type_get | GET /v1/Flows/FlowData/{FlowType} | |
v1_flows_flow_field_flow_type_get | GET /v1/Flows/FlowField/{FlowType} | |
v1_flows_flow_field_value_flow_type_field_name_get | GET /v1/Flows/FlowFieldValue/{FlowType}/{FieldName} | |
v1_flows_flow_types_get | GET /v1/Flows/FlowTypes |
FDMAPIDTOV1FlowsFlowData v1_flows_flow_data_flow_type_get(flow_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.TradeFlowsApi(swagger_client.ApiClient(configuration))
flow_type = 'flow_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_flows_flow_data_flow_type_get(flow_type, fields=fields, max_rows=max_rows, filter=filter, order_by=order_by)
pprint(api_response)
except ApiException as e:
print("Exception when calling TradeFlowsApi->v1_flows_flow_data_flow_type_get: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
flow_type | str | ||
fields | str | [optional] | |
max_rows | int | [optional] | |
filter | str | [optional] | |
order_by | str | [optional] |
- 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[FDMAPIDTOV1FlowsFlowField] v1_flows_flow_field_flow_type_get(flow_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.TradeFlowsApi(swagger_client.ApiClient(configuration))
flow_type = 'flow_type_example' # str |
try:
api_response = api_instance.v1_flows_flow_field_flow_type_get(flow_type)
pprint(api_response)
except ApiException as e:
print("Exception when calling TradeFlowsApi->v1_flows_flow_field_flow_type_get: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
flow_type | str |
list[FDMAPIDTOV1FlowsFlowField]
- 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_flows_flow_field_value_flow_type_field_name_get(flow_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.TradeFlowsApi(swagger_client.ApiClient(configuration))
flow_type = 'flow_type_example' # str |
field_name = 'field_name_example' # str |
filter = '' # str | (optional)
try:
api_response = api_instance.v1_flows_flow_field_value_flow_type_field_name_get(flow_type, field_name, filter=filter)
pprint(api_response)
except ApiException as e:
print("Exception when calling TradeFlowsApi->v1_flows_flow_field_value_flow_type_field_name_get: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
flow_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_flows_flow_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.TradeFlowsApi(swagger_client.ApiClient(configuration))
try:
api_response = api_instance.v1_flows_flow_types_get()
pprint(api_response)
except ApiException as e:
print("Exception when calling TradeFlowsApi->v1_flows_flow_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]