Get Transaction Type(s)
GET /v2/finplus/debtmanagement/transactiontypes (/{id})
Use this endpoint to retrieve the list of all the possible transaction types for the specified school (see Financial Transactions Report).
Path Parameters
Name
Type
Description
{id}
Integer
Optionally provide the Transaction Type 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": "General Journal"
},
{
"id": "2",
"name": "Receipt"
},
{
"id": "3",
"name": "Payment"
},
{
"id": "4",
"name": "Deposit"
},
...
]
}Status: 200 OK
Description: The requested ID does not exist in the system.
Status: 404 Not Found
Code Samples
Last updated