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

Query Parameters
Supported Media Types
Request Body - multipart/form-data ()
Root Schema : schema
Type: object
Show Source
Back to Top

Response

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://design.integration.region.ocp.oraclecloud.com/ic/api/integration/v1/lookups/archive?integrationInstance=service-instance
Back to Top