GET
/
adverse_actions
List adverse action notices
curl --request GET \
  --url https://api.synctera.com/v1/adverse_actions \
  --header 'Authorization: Bearer <token>'
{
  "adverse_actions": [
    {
      "metadata": {},
      "notification_time": "2010-05-06T12:23:34.321Z",
      "purpose": "ACCOUNT_CLOSURE",
      "reasons": [
        "Too many inquiries or insufficient credit history"
      ],
      "related_resource_id": "42ab5301-92b5-4f8a-bbc4-058119d3f7dc",
      "related_resource_type": "ACCOUNT",
      "creation_time": "2010-05-06T12:23:34.321Z",
      "id": "9980ff38-1876-4fc7-8bc9-bf0490e2f746",
      "last_updated_time": "2010-05-06T12:23:34.321Z"
    }
  ],
  "next_page_token": "a8937a0d"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

Unique identifier for the related resource. Multiple IDs can be provided as a comma-separated list.

Example:

"64438afd-fa20-4010-a573-2bbdca77cdb6,84ef251c-ab8f-47a5-bbfd-a16648f95157"

id
string<uuid>[]

return results with these comma-separated IDs

Example:

"c833e6c6-5c15-4719-90e9-7a6682c483d3,ef17356c-69b0-446e-ae2f-72ab59eeb544"

page_token
string

Optional pagination token to be provided to retrieve subsequent pages, returned from previous get

Example:

"a8937a0d"

limit
integer
default:100

Maximum number of objects to return per page. If the limit is greater than 100, then it will be set to 100.

Required range: x >= 1
Example:

100

Response

200
application/json

List of adverse action notices.

The response is of type object.