curl --request PUT \
--url https://platform.versori.com/api/switchboard/v1alpha1/organisations/{organisationId}/data-mappings/{mappingId}/entries/{entryId} \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"sourceValue": "<string>",
"targetValue": "<string>"
}
'{
"id": "<string>",
"sourceValue": "<string>",
"targetValue": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"deletedAt": "2023-11-07T05:31:56Z"
}Update an existing data mapping entry by ID for the given organisation and mapping.
curl --request PUT \
--url https://platform.versori.com/api/switchboard/v1alpha1/organisations/{organisationId}/data-mappings/{mappingId}/entries/{entryId} \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"sourceValue": "<string>",
"targetValue": "<string>"
}
'{
"id": "<string>",
"sourceValue": "<string>",
"targetValue": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"deletedAt": "2023-11-07T05:31:56Z"
}Payload to update an existing DataMappingEntry.
DataMappingEntryUpdate is the request body to update a credential. The ID and organisation ID and Mapping ID fields are taken from the URL path.