Databases
Update a Database import mapping
Revalidates the named import with its updated source-to-target column mapping.
PUT
Update a Database import mapping
Last modified on September 27, 2026
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Revalidates the named import with its updated source-to-target column mapping.
curl --request PUT \
--url https://api.revoengine.com/api/v1/databases/imports/{importId}/mapping \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"mapping": {}
}'const options = {
method: 'PUT',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({mapping: {}})
};
fetch('https://api.revoengine.com/api/v1/databases/imports/{importId}/mapping', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.revoengine.com/api/v1/databases/imports/{importId}/mapping"
payload = { "mapping": {} }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)curl --request PUT \
--url https://api.revoengine.com/api/v1/databases/imports/{importId}/mapping \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"mapping": {}
}'const options = {
method: 'PUT',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({mapping: {}})
};
fetch('https://api.revoengine.com/api/v1/databases/imports/{importId}/mapping', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.revoengine.com/api/v1/databases/imports/{importId}/mapping"
payload = { "mapping": {} }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)