getBulkMetadata

get

/ccadmin/v1/metadata-catalog/bulk

Get Bulk Metadata. Returns Bulk metadata catalog.

Request

There are no request parameters for this operation.

Back to Top

Response

Supported Media Types

200 Response

Following model is returned when operation succeeds.
Body ()
Root Schema : getBulkMetadata_response
Type: object
Show Source
Nested Schema : definitions
Type: object
Show Source
Nested Schema : info
Type: object
Show Source
Nested Schema : paths
Type: object
Show Source
Nested Schema : schemes
Type: array
Show Source
Nested Schema : tags
Type: array
Show Source
Nested Schema : EntityDefinition
Type: object
Show Source
Nested Schema : /path1/path2
Type: object
Show Source
Nested Schema : items
Type: object
Show Source
Example Response (application/json)
{
    "basePath":"/ccadmin/v1/bulk",
    "paths":{
        "/products":{
            "post":{
                "summary":"productBulkImportExport",
                "produces":[
                    "application/json"
                ],
                "operationId":"productBulkImportExport",
                "description":"Product bulk import/export.",
                "responses":{
                    "200":{
                        "schema":{
                            "ref":"#/definitions/product_import_export"
                        },
                        "description":"Following model is returned when operation succeeds."
                    }
                },
                "parameters":[
                    {
                        "schema":{
                            "ref":"#/definitions/product_import_export"
                        },
                        "in":"body",
                        "name":"product_import_export"
                    }
                ],
                "consumes":[
                    "application/json"
                ],
                "tags":[
                    "Products Bulk Import and Export"
                ]
            }
        }
    },
    "host":"localhost:9080",
    "schemes":[
        "http"
    ],
    "definitions":{
        "product_import_export":{
            "description":"The details of the products import and export",
            "properties":{
                "dateAvailable":{
                    "description":"Available date. This is a derived property.",
                    "type":"string"
                },
                "width":{
                    "description":"Width of the product.",
                    "type":"number"
                },
                "shippingSurcharge":{
                    "description":"Extra handling costs while shipping the product.",
                    "type":"number"
                },
                "daysAvailable":{
                    "description":"Available number of days. This is a derived property.",
                    "type":"number"
                }
            }
        }
    },
    "swagger":"2.0",
    "tags":[
        {
            "name":"Products Bulk Import and Export",
            "description":"The details of Products Bulk Import and Export in the Oracle Commerce Cloud"
        }
    ],
    "info":{
        "description":"Bulk entities of the Oracle Commerce Cloud.",
        "title":"Oracle Commerce Cloud Bulk entities",
        "version":"1.0"
    }
}

Default Response

The error response. The following are the internal error codes thrown by this API when the request processing fails in Oracle Commerce Cloud: |Error Code|Description| |------------------|------------------| |13101|METADATA INTERNAL ERROR|
Body ()
Root Schema : errorModel
Type: object
Show Source
Nested Schema : errors
Type: array
An optional list of errors if multiple errors were encountered
Show Source
Nested Schema : items
Type: object
Show Source
Back to Top