GET api/app/extractionengine/{eventId}/{referralEngine}

Gets event details for referred groups This is for a workflow arrangement, fired from a webhook Processes this app API request. The parameter and response sections describe the data exchanged with the API.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
eventId

The unique identifier of the event resource.

integer

Required

referralEngine

The referral engine value supplied with the request.

string

Required

Body Parameters

None.

Response Information

Resource Description

The response returned after the operation completes.

ReferralEngineEventDataContract
NameDescriptionTypeAdditional information
SystemName

The system name value.

string

None.

AgencyId

The unique identifier of the related agency resource.

integer

None.

ReferredGroups

The collection of referred groups.

Collection of ReferralEngineEventGroupDataContract

None.

Id

The unique identifier of this resource.

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "SystemName": "sample string 1",
  "AgencyId": 2,
  "ReferredGroups": [
    {
      "JsonSettings": {},
      "Id": 2
    },
    {
      "JsonSettings": {},
      "Id": 2
    }
  ],
  "Id": 3
}