Get ACE File Type

Use this API to get details of a specific file type supported by ACE.

API

/cemli/v1/files/types/{type}

Scope and AuthZ

  • You must have mcs:oci:api:User scope to access this API.
  • You can use CEMLI Metadata API only if your customer has opted-in for CEMLI functionality.

Headers

  • Authorization: Bearer <Token>

    Where <Token> is the OAUTH token returned by the Authorization Server (JWT Token).

  • Identifier: <JWKS Identifier>

    Where <JWKS Identifier> is the GUID generated when JWKS URI is set by customer admin in self-service platform.

Base Path

/cemli/v1/

Dependency

Get ACE File Types

Functionality

This API fetches the details of a specific file type using the type as path parameter.

Verb

GET

Parameters

Name Type Description Mandatory
type Path parameter ACE file type Yes

Sample response

{
  "type": "xmlp_xlf",
  "description": "XML Publisher XLF file",
  "dbObjRequired": false,
  "headerRequired": true,
  "nlsEnabled": true,
  "isBinary": false,
  "phase": "last",
  "sequence": 3,
  "executionSequence": 23,
  "directory": "publisher/templates/{lang}",
  "headerFormat": "@2<!-- $HEADER$ -->",
  "parameters": {
    "APPS_SHORT_NAME": {
      "label": "Product Short Name",
      "defaultValue": "$mod",
      "type": "TEXT",
      "required": true
    },
    "TEMPLATE_CODE": {
      "label": "Template Code",
      "type": "TEXT",
      "required": true
    }
  }
}