Versions Compared

Key

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

...

Querying Fraud Data via API

As mentioned previously, For colleges that aren’t able to receive stream fraud notifications via the SuperGlue College Adaptor, can query the fraud table fraud data can be queried directly using the FraudReportQuery API request. The FraudReportQuery query is based on the query interface for a FraudReport type object type, which is basically the “fraud report” 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

When an authorized user fetches fraud reports related to your college through the API, the Access Token authenticates the user’s credentials and also identifies the user’s MIS code as the “recipientMisCode” in a query and responds with a list of fraud reports that match your MIS code.

There are three different variations of the FraudReportQuery that can be used to query fraud reports:

FraudReportQuery:withRecipientMisCode

FraudReportQuery:withAPPID

FraudReportQuery:withCCCID

FraudReport object has the following fields:

  • appId!

  • cccId!

  • recipientMisCode!

  • reportedByMisCode!

  • submitTiimestamp!

  • fraudType

  • ccpgAid

  • federalAid

  • localAid

  • otherAid

Three FraudReportQuery three Input arguments:

  • 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.

...