plaid
(Deprecated) List Beacon Reports for a Beacon User
Use the /beacon/report/list endpoint to view all Beacon Reports you created for a specific Beacon User. The reports returned by this endpoint are exclusively reports you created for a specific user. A Beacon User can only have one active report at a time, but a new report can be created if a previous report has been deleted. The results from this endpoint are paginated; the next_cursor field will be populated if there is another page of results that can be retrieved. To fetch the next page, pass the next_cursor value as the cursor parameter in the next request.
post/beacon/report/list
Request body
Example request
{
"beacon_user_id": "becusr_42cF1MNo42r9Xj",
"cursor": "eyJkaXJlY3Rpb24iOiJuZXh0Iiwib2Zmc2V0IjoiMTU5NDM"
}Response
OK
Example response
{
"beacon_reports": [
{
"id": "becrpt_11111111111111",
"beacon_user_id": "becusr_42cF1MNo42r9Xj",
"created_at": "2020-07-24T03:26:02Z",
"fraud_date": "1990-05-29",
"event_date": "1990-05-29",
"fraud_amount": {
"value": 100
},
"audit_trail": {
"dashboard_user_id": "54350110fedcbaf01234ffee",
"timestamp": "2020-07-24T03:26:02Z"
}
}
],
"next_cursor": "eyJkaXJlY3Rpb24iOiJuZXh0Iiwib2Zmc2V0IjoiMTU5NDM"
}