For Developers

Get Fee

GET https://ed.link/api/v2/graph/fees/:fee\_id

Retrieve information about a specific Fee.

Request Parameters

ParameterTypeDescription
fee_idstringThe UUID of the desired Fee.

Sample Request

axios.get('https://ed.link/api/v2/graph/fees/24eee974-421b-45be-817d-75d51706dd5b', {
    headers: {
        authorization: `Bearer ${integration_access_token}`
    }
});

Sample Response

{
    "$data": {
        "id": "24eee974-421b-45be-817d-75d51706dd5b",
        "created_date": "2021-07-13T17:45:27.570Z",
        "updated_date": "2021-07-13T17:45:27.570Z",
        "properties": {},
        "amount": 110.0,
        "balance": 110.0,
        "currency": "AUD",
        "amount_charged": 110.0,
        "amount_paid": 0.0,
        "original_amount": 110.0,
        "adjustment_amount": 0.0,
        "prorated": false,
        "payment_schedule": "One-time",
        "comment": "Fee for 2026 course registration",
        "description": "2026Y Course Registration Fee",
        "creation_date": "2021-08-01T00:00:00.000Z",
        "date_charged": "2021-08-15T00:00:00.000Z",
        "date_due": "2021-09-15T00:00:00.000Z",
        "priority": 10,
        "category": "Administrative",
        "type": "registration",
        "flags": [],
        "identifiers": [
            {
                "type": "sis_id",
                "value": "ZXCVB12345"
            }
        ],
        "school_ids": ["c880375f-54ec-431e-bf29-5f62002f6a93"],
        "department_ids": ["b7669d88-a3a8-41c7-b2a8-ff21f5ca8fa4"],
        "subject_ids": [],
        "course_ids": [],
        "session_ids": [],
        "person_ids": ["fdc68e46-597d-4a81-bbed-6ed3cde63ee0"]
    },
    "$request": "00000000-0000-0000-0000-000000000000"
}