Get the list of available resources
get
/mftapp/rest/v1/metadata-catalog
Lists each resource name with alternate and describe links which can be used to get the meta data of the resource
Request
There are no request parameters for this operation.
Back to TopResponse
Supported Media Types
- application/json
200 Response
Root Schema : resourceCatalog
Type:
Show Source
object
-
items:
array items
Information about the MFT resources.
-
links:
array links
Nested Schema : items-items[0]
Type:
Show Source
object
-
links:
array links
-
name:
string
Name of the resource.
Nested Schema : links-items[0]
Type:
Show Source
object
-
href:
string
Reference to resource.
-
mediaType:
string
Media type of response.
-
rel:
string
Relationship to resource.
Nested Schema : links-items[0]
Type:
Show Source
object
-
href:
string
Reference to resource.
-
mediaType:
string
Media type of response.
-
rel:
string
Relationship to resource.
Example Response (application/json)
{
"items":[
{
"name":"events",
"links":[
{
"rel":"alternate",
"href":"http://host:port/mftapp/rest/v1/metadata-catalog/events",
"mediaType":"application/schema+json"
},
{
"rel":"describes",
"href":"http://host:port/mftapp/rest/v1/events"
}
]
},
{
"name":"sources",
"links":[
{
"rel":"alternate",
"href":"http://host:port/mftapp/rest/v1/metadata-catalog/sources",
"mediaType":"application/schema+json"
},
{
"rel":"describes",
"href":"http://host:port/mftapp/rest/v1/sources"
}
]
}
],
"links":[
{
"rel":"alternate",
"href":"http://host:port/mftapp/rest/v1/metadata-catalog/catalog",
"mediaType":"application/schema+json"
},
{
"rel":"self",
"href":"http://host:port/mftapp/rest/v1/metadata-catalog/"
}
]
}
500 Response
Something went wrong
Root Schema : Error information.
Type:
object
Title:
Show Source
Error information.
-
errorCode:
string
The error code that Oracle Managed File Transfer returns.
-
errorKey:
string
The error key that Oracle Managed File Transfer returns.
-
errorMessage:
string
A message describing the error that Oracle Managed File Transfer returns.
Example Response (application/json)
{
"errorCode":"MFT-5445",
"errorKey":"MFT_REST_UNABLE_TO_LIST_RESOURCES_CATALOG",
"errorMessage":"Unable to list the resources catalog of MFT RESTful services."
}
Examples
Example of Response Body
The following example shows how to get metadata catalog by submitting a GET request on the REST resource using cURL.
curl -i -X GET -H "Content-Type: application/json" http://host:port/mftapp/rest/v1/metadata-catalog
The following example shows the contents of the response body for a successful request in json format:
{ "items": [ { "name": "events", "links": [ { "rel": "alternate", "href": "http://host:port/mftapp/rest/v1/metadata-catalog/events", "mediaType": "application/schema+json" }, { "rel": "describes", "href": "http://host:port/mftapp/rest/v1/events" } ] }, { "name": "sources", "links": [ { "rel": "alternate", "href": "http://host:port/mftapp/rest/v1/metadata-catalog/sources", "mediaType": "application/schema+json" }, { "rel": "describes", "href": "http://host:port/mftapp/rest/v1/sources" } ] }, { "name": "applicationMetadata", "links": [ { "rel": "alternate", "href": "http://host:port/mftapp/rest/v1/metadata-catalog/applicationMetadata", "mediaType": "application/schema+json" }, { "rel": "describes", "href": "http://host:port/mftapp/rest/v1/applicationMetadata" } ] }, { "name": "artifacts", "links": [ { "rel": "alternate", "href": "http://host:port/mftapp/rest/v1/metadata-catalog/artifacts", "mediaType": "application/schema+json" }, { "rel": "describes", "href": "http://host:port/mftapp/rest/v1/artifacts" } ] }, { "name": "purges", "links": [ { "rel": "alternate", "href": "http://host:port/mftapp/rest/v1/metadata-catalog/purges", "mediaType": "application/schema+json" }, { "rel": "describes", "href": "http://host:port/mftapp/rest/v1/purges" } ] } ], "links": [ { "rel": "alternate", "href": "http://host:port/mftapp/rest/v1/metadata-catalog/catalog", "mediaType": "application/schema+json" }, { "rel": "self", "href": "http://host:port/mftapp/rest/v1/metadata-catalog/" } ] }