List Fee Components
Use this API to fetch fee component codes used in student fee and payment payloads.
Endpoint
Section titled “Endpoint”GET /api/v1/integrations/erp/fee-componentsRequest
Section titled “Request”curl -X GET 'https://[base_url]/api/v1/integrations/erp/fee-components?collector_code=ed3ef2db524f' \ -H 'Content-Type: application/json' \ -H 'Authorization: Basic <token>'Query Parameters
Section titled “Query Parameters”| Parameter | Type | Required | Description |
|---|---|---|---|
collector_code | string | Conditional | Required when the institute is part of a group or has branch-specific configuration. |
Response
Section titled “Response”HTTP 200
{ "status": "success", "data": [ { "component_type": "REGISTRATION_FEE", "name": "Registration Fee" }, { "component_type": "COURSE_FEE", "name": "Course Fee" } ]}Response Data
Section titled “Response Data”| Attribute | Type | Description |
|---|---|---|
data[].component_type | string | Fee component code to send in fee and payment APIs. |
data[].name | string | Fee component display name. |