FRAMES | NO FRAMES Description | Parameters | Examples | Response
Match Session
URL http://<spatial-notification-url>/sessions/<sessionId>
Supported Operations Notify Session
Parent Resource Spatial Notification

Description

Represents the list of matches to change rules found during a spatial notification session.

Parameters

Parameter Details
f Description: The response format. The default response format is html.

Values: html | json

Example Usage

Example 1: URL for the matches belonging to notification session ID "{53C0E3AD-3513-4C55-AC2B-64BBAFF416AA}" in the "Workflow" service on sampleserver.

http://sampleserver/arcgis/rest/services/Workflow/WMServer/spatialNotification/sessions/{53C0E3AD-3513-4C55-AC2B-64BBAFF416AA}

JSON Response Syntax

{
  "matches": [
    {
      "id": "<matchId1>",
      "ruleId": "<ruleId1>",
      "jobId": <jobId1>,
      "changeType": <changeType1>,
      "changeTime": <changeTime1>,
      "dataWorkspaceId": "<dataWorkspaceId1>",
      "dataset": "<datasetName1>"
    },
    {
      "id": "<matchId2>",
      "ruleId": "<ruleId2>",
      "jobId": <jobId2>,
      "changeType": <changeType2>,
      "changeTime": <changeTime2>,
      "dataWorkspaceId": "<dataWorkspaceId2>",
      "dataset": "<datasetName2>"
    },
    ...
  ]
}

JSON Response Example

{
  "matches": [
    {
      "id": "{6C10A5C3-64B6-42DA-A03C-554B5B437FD0}",
      "ruleId": "{46D22CFB-3AA3-40C1-9427-B7BB027D26EA}",
      "jobId": 5,
      "changeType": 2,
      "changeTime": 1230768000000,
      "dataWorkspaceId": "{39FD6B70-DA49-4F91-BD9D-0F2F0A8FEC26}",
      "dataset": "sde.Airports"
    }
  ]
}