POST api/DataEntityMatchings
Request Information
URI Parameters
None.
Body Parameters
DataEntityMatching| Name | Description | Type | Additional 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:42:42.0317411+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:42:42.0317411+00:00</LastRun> <MatchingId>1</MatchingId> <Name>sample string 2</Name> </DataEntityMatching>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.