Import(Replace) a Lookup

put

/ic/api/integration/v1/lookups/archive

Updates an existing lookup. If you are using cURL, use the -F option to specify the file to import. If this command returns with HTTP 404, use Import(Add) a Lookup instead.

Request

Supported Media Types
Form Parameters
Back to Top

Response

Supported Media Types

200 Response

Successful operation

400 Response

No file is uploaded

404 Response

Lookup not found

500 Response

Server error
Back to Top

Examples

The following cURL command example shows how to update an existing lookup by submitting a PUT request on the REST resource using cURL. For more information about cURL, see Use cURL. For more information about endpoint URL structure, see Send Requests.

curl -X PUT -H 'Authorization: Bearer access_token' -F file=@lookup.csv -F type=application/octet-stream https://integration.us.oraclecloud.com/ic/api/integration/v1/lookups/archive
Back to Top