Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Querying Fraud Data via API

Colleges that have not yet implemented the SuperGlue College Adaptor can ask for query fraud data related to their college directly via the Fraud Data API. The schema provides the FraudReportQuery queryoperation, described in the schema. The FraudReportQuery is the describes this operation as FraudReportQuery, the query interface for retrieving a FraudReport type object, which is basically the “fraud report” 10 field response for a student and/or application that includes 10 fields.

Panel
panelIconIdatlassian-info
panelIcon:info:
bgColor#F4F5F7

An Object type is one of the most basic components of a GraphQL schema. It represents the kind of object you can fetch from your service and the fields it includes. Learn more

...

and

...

the fields it includes. Learn more

The schema provides three templated variations of the FraudReportQuery that can be used to query fraud reports:

FraudReportQuery:withRecipientMisCode

Requests a list of FraudReport responses using the “RecipientMisCode” field as the input variable.

FraudReportQuery:withAPPID

Requests a FraudReport response using the AppId field as the input variable.

FraudReportQuery:withCCCID

Requests a FraudReport response using the CCCID field as the input variable.

FraudReport object has the following fields:

...

  • withAPPID

  • withCCCID

  • withRecipientMisCode

Each argument

Mostly used with the “withRecipientMisCode” query (because the district or college will be retrieving the applications or CCCIDs of the applicants that have submitted applications to their institution’s mis code.

Below is an example of the FraudReportQuery:withRecipientMisCode

...

Fraud Report Query (FraudReportQuery)

...