Skip to main content
GET
/
edd
List EDD
curl --request GET \
  --url https://api.synctera.com/v2/edd
{
  "edd_reports": [
    {
      "additional_questions": [
        {
          "answer": "<any>",
          "question": "<any>",
          "section": "<any>"
        }
      ],
      "case_id": 50000000000,
      "reason": "CASE_REQUEST",
      "related_resource_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "related_resource_type": "ACCOUNT",
      "tenant": "abcdef_ghijkl",
      "citizenship_countries": [
        "US"
      ],
      "employment_type": "FULL_TIME",
      "income": {
        "amount": 1000,
        "currency": "USD",
        "frequency": "ONE_TIME",
        "source": "EMPLOYMENT"
      },
      "negative_news_findings": 3,
      "occupation": "<string>",
      "occupation_industry": "AGRICULTURE_FORESTRY_FISHING_AND_HUNTING",
      "recurring_direct_deposit": true,
      "residence_type": "OWN",
      "residential_expense": {
        "amount": 1000,
        "currency": "USD",
        "frequency": "ONE_TIME"
      },
      "source_of_wealth": [
        "SALARY"
      ],
      "creation_time": "2010-05-06T12:23:34.321Z",
      "deletion_time": "2010-05-06T12:23:34.321Z",
      "id": "7d943c51-e4ff-4e57-9558-08cab6b963c7"
    }
  ],
  "next_page_token": "a8937a0d"
}

Query Parameters

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

page_token
string

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

Example:

"a8937a0d"

Only return notes that have a related resource with the specified ID.

Example:

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

Only return notes that have a related resource with the specified type.

Available options:
ACCOUNT,
BUSINESS,
CUSTOMER,
EDD,
INVOICE,
REVENUE_STATEMENT

Response

List of EDD based on related resource type

edd_reports
object[]
required

Array of edd reports.

  • Option 1
  • Option 2
  • Option 3
  • Option 4
next_page_token
string

If returned, use the next_page_token to query for the next page of results. Not returned if there are no more rows.

Example:

"a8937a0d"