GET api/SIMS/GetChangesAndDeletionsByReplicId?replicId={replicId}&companyKey={companyKey}

Gets a list of records which were deleted/changed according to the ReplicId

Request Information

URI Parameters

NameDescriptionTypeAdditional information
replicId

The ReplicId to get the changes/deletions for

string

Required

companyKey

The company name if the service is connected to multiple SIMS companies (Optional)

string

Default value is

Body Parameters

N/A


Response Information

Resource Description

List of Deletion/Changed records according to the ReplicId provided

Collection of DeletionOrChangeRecord
NameDescriptionTypeAdditional information
ChngId

string

N/A

Table

string

N/A

Type

string

N/A

Primary

string

N/A

PrimKey

string

N/A

ValueTo

string

N/A

ReplicId

string

N/A

Response Formats

application/json, text/json

Sample:
[
  {
    "ChngId": "sample string 1",
    "Table": "sample string 2",
    "Type": "sample string 3",
    "Primary": "sample string 4",
    "PrimKey": "sample string 5",
    "ValueTo": "sample string 6",
    "ReplicId": "sample string 7"
  },
  {
    "ChngId": "sample string 1",
    "Table": "sample string 2",
    "Type": "sample string 3",
    "Primary": "sample string 4",
    "PrimKey": "sample string 5",
    "ValueTo": "sample string 6",
    "ReplicId": "sample string 7"
  }
]