Get available active sources
get
                    /mftapp/rest/v1/sources
 Gets the list of sources active in MFT based on the criteria like application type, binding type, etc. The response contains the list of sources with URLs.
                Request
Query Parameters
                                - application
- 
                                            
Type:stringType of the application binding you want to discover
- bindingTypeType:
stringBinding type of source you want to discover
- onlyEventEnabledType:
booleanDiscover only event enabled sources
- searchFilterType:
stringFull/partial Name of source(s) to be discoveredResponseSupported Media Types- application/json
 200 ResponseDescribes active sources.BodyRoot Schema : activeSourcesNested Schema : sourcesNested Schema : itemsType:objectTitle:items- bindingType
- 
            
            
Type:stringBinding type of the source.
- eventInvokeUrl
- 
            
            
Type:stringURL at which to invoke the event.
- name
- 
            
            
Type:stringName of the source.
- url
- 
            
            
Type:stringURL of the source.
 500 ResponseError information.BodyRoot Schema : errorsType:objectTitle:errors- errorCode
- 
            
            
Type:stringThe error code that Oracle Managed File Transfer returns.
- errorKey
- 
            
            
Type:stringThe error key that Oracle Managed File Transfer returns.
- errorMessage
- 
            
            
Type:stringA message describing the error that Oracle Managed File Transfer returns.
 ExamplesExample of Response Body: 200 ResponseThe following example shows the contents of the response body for a successful request in JSON format: { "sources": [ { "name": "src1", "url": "/scratch/demo", "bindingType": "File", "eventInvokeUrl": "/mftapp/rest/v1/events" }, { "name": "src2", "url": "/scratch/username", "bindingType": "File", "eventInvokeUrl": "/mftapp/rest/v1/events" } ] }Example of Response Body: 500 ResponseThe following example shows the contents of the response body for an unsuccessful request in JSON format: { "errorCode":"MFT-5403" "errorKey":"MFT_WS_DISCOVERY_COULD_NOT_QUERY_MFT_SOURCES" "errorMessage":"Discovery service is unable to query MFT Sources for the given application {application} and search Filter {search filter}." }