PUT api/DataEntityMatchings/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

DataEntityMatching
NameDescriptionTypeAdditional information
Id

integer

None.

DataEntityId

integer

None.

Name

string

None.

MatchingId

integer

None.

IsDeleted

boolean

None.

LastRun

date

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "DataEntityId": 1,
  "Name": "sample string 2",
  "MatchingId": 1,
  "IsDeleted": true,
  "LastRun": "2026-01-13T01:44:18.9748154+00:00"
}

application/xml, text/xml

Sample:
<DataEntityMatching xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DOMDM.WebApi.Models">
  <DataEntityId>1</DataEntityId>
  <Id>1</Id>
  <IsDeleted>true</IsDeleted>
  <LastRun>2026-01-13T01:44:18.9748154+00:00</LastRun>
  <MatchingId>1</MatchingId>
  <Name>sample string 2</Name>
</DataEntityMatching>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'DataEntityMatching'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.