GET /users/{id_or_external_id}/transactions

Show user transactions with categories.

Path parameters

  • id_or_external_id string Required

    UUID or external ID of a user profile to get access to their reports and data.

Responses

  • 200

    User transactions pulled

    Hide response attributes Show response attributes array[object]
    • id string

      UUID identificator of a single transaction

    • description string
    • amount number
    • date date
    • category object
      Hide category attributes Show category attributes object
      • id integer

        Category ID

      • code string
      • description string

        Category user-friendly name

  • 404

    User not found

  • 500

    The request is not valid.

    Hide response attributes Show response attributes object
    • error_message string

      Human readable error message.

    • error string

      Error code & short status

GET /users/{id_or_external_id}/transactions
curl \
 -X GET https://link.goscore.me/finid-api/1.0/users/{id_or_external_id}/transactions \
 -H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
  {
    "id": "string",
    "description": "string",
    "amount": 42.0,
    "date": "2022-01-07",
    "category": {
      "id": 74,
      "code": "incurences-fees",
      "description": "Loan, incurrencies & fees"
    }
  }
]
Response examples (200)
[
  {
    "id": "string",
    "description": "string",
    "amount": 42.0,
    "date": "2022-01-07",
    "category": {
      "id": 74,
      "code": "incurences-fees",
      "description": "Loan, incurrencies & fees"
    }
  }
]
Response examples (500)
{
  "error_message": "Invalid requeet",
  "error": "ER-001"
}
Response examples (500)
{
  "error_message": "Invalid requeet",
  "error": "ER-001"
}