GET Findings/{InspectionKey}/Sentiment/{PartitionIndex}

Get a partition of sentiment findings.
Because an Inspection can contain a very large number of findings, this API returns findings by "partition".
The number of partitions is obtained by GET /Findings/{InspectionKey}
To obtain all of the findings, perform this GET operation repeatedly, iterating from 0 to the number of sentiment partitions - 1.
This operation returns findings from the sentiment analysis only. To retrieve the topic findings, use the
GET /Findings/{InspectionKey}/Topics/{PartitionIndex}
operation.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
InspectionKey

The key of the Inspection.

integer

Required

PartitionIndex

The index of the partition, range [0, PartitionCount)

integer

Required

Body Parameters

None.

Response Information

Get a partition of sentiment findings.
Because an Inspection can contain a very large number of findings, this API returns findings by "partition".
The number of partitions is obtained by GET /Findings/{InspectionKey}
To obtain all of the findings, perform this GET operation repeatedly, iterating from 0 to the number of sentiment partitions - 1.
This operation returns findings from the sentiment analysis only. To retrieve the topic findings, use the
GET /Findings/{InspectionKey}/Topics/{PartitionIndex}
operation.

PartitionFindingsResponse
NameDescriptionTypeAdditional information
Findings

The findings in this partition.

Collection of InspectionFinding

Required

errors

If null the request was processed without error. If not null errors occurred while processing the request. The array contains the error messages.

Collection of string

None.