GET api/TableMappings

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of TableMapping
NameDescriptionTypeAdditional information
TableMappingId

integer

None.

SourceTableName

string

None.

ServiceEndpoint

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "TableMappingId": 1,
    "SourceTableName": "sample string 2",
    "ServiceEndpoint": "sample string 3"
  },
  {
    "TableMappingId": 1,
    "SourceTableName": "sample string 2",
    "ServiceEndpoint": "sample string 3"
  }
]

application/xml, text/xml

Sample:
<ArrayOfTableMapping xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MScore.Synchronization.WebApi.Dto">
  <TableMapping>
    <ServiceEndpoint>sample string 3</ServiceEndpoint>
    <SourceTableName>sample string 2</SourceTableName>
    <TableMappingId>1</TableMappingId>
  </TableMapping>
  <TableMapping>
    <ServiceEndpoint>sample string 3</ServiceEndpoint>
    <SourceTableName>sample string 2</SourceTableName>
    <TableMappingId>1</TableMappingId>
  </TableMapping>
</ArrayOfTableMapping>