Import Attribute Values

Imports attribute values into an existing list attribute or group attribute. In Transaction Matching, you can only import group attributes.

REST Resource

POST /armARCS/rest/{api_version}/jobs

Required Roles

Service Administrator, Power User

Users with Power User predefined role may require additional application roles.

Request

Supported Media Types: application/json

Parameters

The following table summarizes the client request.

Table 17-25 Parameters

Name Description Type Required Default
api_version Version of the API you are developing with: v1 Path Yes None
jobname The name of the job, IMPORT_ATTRIBUTE_VALUES Payload Yes None
importType The import type. Supported values are Replace, Replace All, and Update. Payload No Replace
fileLocation The file name containing the values to be imported; example: StoreData.csv Payload Yes None
dateFormat Format of date fields in the import file. Supported date formats are as follows:
  • d MMM, yyyy
  • MMM d, yyyy
  • MM/dd/yyyy
  • dd/MM/yyyy
  • MM-dd-yyyy
  • d-M-yyyy
  • dd-MMM-yy
  • dd-MMM-yyyy
Payload No dd-MMM-yyyy
attribute The name of the list attribute or group attribute into which values must be imported. Payload Yes None
module The name of the module. Supported values are: RC for Reconciliation Compliance and TM for Transaction Matching. Payload Yes None

Example of Request Body

{
"jobName" : "IMPORT_ATTRIBUTE_VALUES",
"parameters": {
"attribute":"Store",
"importType":"Replace",
"fileLocation":"StoreData.csv",
"dateFormat": "MMM d,yyyy",
"module": "RC"}
}

Response

Parameters

The following table summarizes the response parameters.

Table 17-26 Parameters

Name Description
type The application type
details In case of errors, details are published with the error string
status See Migration Status Codes
links Detailed information about the link
href Links to API call or status API
action The HTTP call type
rel Relationship type

Supported Media Types: application/json

Example of Response Body

{
"type": "ARCS",
"status": -1,
"details": "In Process",
"links": [
{
"rel": "self",
"href": "https://<SERVICE_NAME>-<TENANT_NAME>.<SERVICE_TYPE>.<dcX>.oraclecloud.com/oraclecloud.com/arm/rest/fcmapi/v1/RC/job/2141",
"action": "GET"
}
]
}