POST api/integration/IntegrationStatus/IntegrationStart

Request Information

URI Parameters

None.

Body Parameters

IntegrationStartRequest
NameDescriptionTypeAdditional information
SourceSystemId

integer

None.

IntegrationName

string

None.

Request Formats

application/json, text/json

Sample:
{
  "SourceSystemId": 1,
  "IntegrationName": "sample string 2"
}

text/html

Sample:
{"SourceSystemId":1,"IntegrationName":"sample string 2"}

application/xml, text/xml

Sample:
<IntegrationStartRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Gravitate.WCF.Integration.IntegrationStatusModels">
  <IntegrationName>sample string 2</IntegrationName>
  <SourceSystemId>1</SourceSystemId>
</IntegrationStartRequest>

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 'IntegrationStartRequest'.

Response Information

Resource Description

IntegrationStatusDTO
NameDescriptionTypeAdditional information
IntegrationName

string

None.

SourceSystemId

integer

None.

LastRunStartDateTime

date

None.

LastRunEndDateTime

date

None.

ProcessStatusMeaning

string

None.

MaxSyncDateTime

date

None.

MaxSyncDateMaxPKId

integer

None.

SourceId

integer

None.

SourceIdString

string

None.

CustomDatabaseValues

Dictionary of string [key] and string [value]

None.

Response Formats

application/json, text/json

Sample:
{
  "IntegrationName": "sample string 1",
  "SourceSystemId": 2,
  "LastRunStartDateTime": "2025-12-10T08:22:52.8100855-06:00",
  "LastRunEndDateTime": "2025-12-10T08:22:52.8100855-06:00",
  "ProcessStatusMeaning": "sample string 3",
  "MaxSyncDateTime": "2025-12-10T08:22:52.8100855-06:00",
  "MaxSyncDateMaxPKId": 1,
  "SourceId": 1,
  "SourceIdString": "sample string 4",
  "CustomDatabaseValues": {
    "sample string 1": "sample string 2",
    "sample string 3": "sample string 4"
  }
}

text/html

Sample:
{"IntegrationName":"sample string 1","SourceSystemId":2,"LastRunStartDateTime":"2025-12-10T08:22:52.8100855-06:00","LastRunEndDateTime":"2025-12-10T08:22:52.8100855-06:00","ProcessStatusMeaning":"sample string 3","MaxSyncDateTime":"2025-12-10T08:22:52.8100855-06:00","MaxSyncDateMaxPKId":1,"SourceId":1,"SourceIdString":"sample string 4","CustomDatabaseValues":{"sample string 1":"sample string 2","sample string 3":"sample string 4"}}

application/xml, text/xml

Sample:
<IntegrationStatusDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Gravitate.WCF.DTO.Integration">
  <CustomDatabaseValues xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:KeyValueOfstringstring>
      <d2p1:Key>sample string 1</d2p1:Key>
      <d2p1:Value>sample string 2</d2p1:Value>
    </d2p1:KeyValueOfstringstring>
    <d2p1:KeyValueOfstringstring>
      <d2p1:Key>sample string 3</d2p1:Key>
      <d2p1:Value>sample string 4</d2p1:Value>
    </d2p1:KeyValueOfstringstring>
  </CustomDatabaseValues>
  <SourceId>1</SourceId>
  <SourceIdString>sample string 4</SourceIdString>
  <IntegrationName>sample string 1</IntegrationName>
  <LastRunEndDateTime>2025-12-10T08:22:52.8100855-06:00</LastRunEndDateTime>
  <LastRunStartDateTime>2025-12-10T08:22:52.8100855-06:00</LastRunStartDateTime>
  <MaxSyncDateMaxPKId>1</MaxSyncDateMaxPKId>
  <MaxSyncDateTime>2025-12-10T08:22:52.8100855-06:00</MaxSyncDateTime>
  <ProcessStatusMeaning>sample string 3</ProcessStatusMeaning>
  <SourceSystemId>2</SourceSystemId>
</IntegrationStatusDTO>