Import Logo Image

Imports the corporate logo used in an Account Reconciliation environment from an export file into another environment.

The logo is available for import after you upload the image file using the Upload REST API. This is an asynchronous API.

REST Resource

POST       /arm/rest/fcmapi/{api_version}/rc/import/logo

Required Roles

Service Administrator

Request

Supported Media Types: application/json

Parameters

The following table summarizes the client request parameters specific to this job.

Table 17-51 IMPORT LOG IMAGE

Name Description Required Default
api_version The current REST API version for the API. For example, v1 for this API. Yes v1
fileName The name of the logo image file that contains the image to be imported. Supported formats include JPG, JPEG, GIF, and PNG. Yes None

Example of request body

{
    "fileName":"logo.jpg"
}

Response

Supported Media Types: application/json

Parameters:

Table 17-52 Parameters

Name Description
details In case of errors, details are published with the error string.
status

Status of the job:

  • -1 = In Progress
  • 0 = Success
  • 1 = Fail
links Detailed information about the link
href Links to API call or status API
action The HTTP call type
rel Relationship type. Possible values: self.

Example of Response Body

The following is an example of the response body in JSON format.

{
    "links": [
        {
            "rel": "self",
            "href": "<SERVICE_NAME>-
<TENANT_NAME>.<SERVICE_TYPE>.<dcX>.oraclecloud.com/arm/rest/fcmapi/v1/RC/import/logo",
            "action": "POST"
        }
    ],
    "details": "Logo image imported successfully.",
    "type": "RC",
    "status": 0,
    "link": {},
    "error": null,
    "items": []
}