Get Transaction Category(s)

GET /v2/finplus/debtmanagement/transactioncategories (/{id})

Use this endpoint to retrieve the list of all the possible transaction categories for the specified school (see Financial Transactions Report).

circle-info

By default, this endpoint returns a collection of records, wrapped in a data array. To retrieve a single record, provide its ID in the URL, which will return a single object instead of a collection.

Path Parameters

Name
Type
Description

{id}

Integer

Optionally provide the Transaction Category ID for retrieving a single record.

Request Headers

Name
Type
Description

HTTP-X-USERNAME*

String

As provided by d6

HTTP-X-PASSWORD*

String

As provided by d6

HTTP-X-SCHOOLID*

Integer

The unique identifier of the school for which the data is being queried.

Response Examples

Status: 200 OK

{
    "data": [
        {
            "id": "1",
            "name": "School Fees"
        },
        {
            "id": "6",
            "name": "Hostel Fees"
        },
        {
            "id": "7",
            "name": "Aftercare"
        },
        ...
    ]
}

Code Samples

Last updated