GET /categories

Get a list with all categories.

Responses

  • 200

    List of all categories

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

      Category ID

    • code string
    • description string

      Category user-friendly name

  • 422

    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 /categories
curl \
 -X GET https://link.goscore.me/finid-api/1.0/categories \
 -H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
  {
    "id": 74,
    "code": "incurences-fees",
    "description": "Loan, incurrencies & fees"
  }
]
Response examples (200)
[
  {
    "id": 74,
    "code": "incurences-fees",
    "description": "Loan, incurrencies & fees"
  }
]
Response examples (422)
{
  "error_message": "Invalid requeet",
  "error": "ER-001"
}
Response examples (422)
{
  "error_message": "Invalid requeet",
  "error": "ER-001"
}