ERP
  1. salaries
ERP
  • master
    • caste
      • create
      • update
      • delete
      • read
    • organisation
      • read
      • update
      • create
      • delete
    • student-type
      • create
      • update
      • delete
      • read
    • nationality
      • view
      • create
      • update
      • delete
    • states
      • read
      • create
      • update
      • delete
    • subject
      • create
      • view
      • update
      • delete
    • classes
      • view
      • create
      • update
      • delete
    • section
      • view
      • update
      • create
      • delete
    • country
      • view
      • create
      • update
      • delete
    • districts
      • view
      • create
      • update
      • delete
    • religion
      • view
      • create
      • update
      • delete
    • staff-designation
      • view
      • create
      • update
      • del
    • holidays
      • view
      • create
      • update
      • delete
    • academic-year
      • create
      • update
      • delete
      • read
    • transport
      • vechile
        • read
        • create
        • update
        • delete
      • bus-drivers
        • read
        • create
        • update
        • delete
      • trip
        • read
        • create
        • update
        • delete
      • bus-route
        • read
        • create
        • update
        • delete
    • terms
      • read
      • create
      • udate
      • delete
    • fees
      • read
      • create
      • update
      • delete
  • staff
    • reports
      • read
      • create
      • update
      • delete
    • staff
      • read
      • create
      • update
      • del
    • staff-attendence
      • read
      • create
      • update
      • delete
    • salaries
      • read
        GET
      • create
        POST
      • update
        PUT
      • delete
        DELETE
  • students
    • student-reports
      • create
      • update
      • delete
      • read
    • enquiries
      • create
      • update
      • delete
      • read
    • student-attendence
      • read
      • create
      • update
      • delete
    • certificates
      • read
      • create
      • update
      • delete
    • admission
      • read
      • create
      • update
      • delete
    • dairy
      • read
      • create
      • update
      • delete
  • transaction
    • expenditures
      • read
      • create
      • update
      • delete
    • fee-collections
      • read
      • create
      • update
      • delete
  1. salaries

read

Developing
GET
http://localhost:1337/api/staff/salaries
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'http://localhost:1337/api/staff/salaries'
Response Response Example
[{"id":1,"documentId":"eaq363i8qdzmo9khzvdzyzri","createdAt":"2025-04-28T11:50:57.441Z","updatedAt":"2025-04-28T11:51:22.517Z","publishedAt":"2025-04-28T11:51:22.502Z","locale":null,"basicPay":1000,"hra":10000,"otherAllowances":777,"grossSalary":50000,"epf":1800,"pt":500,"deductions":200,"netSalary":85000,"bankAccountNumber":"7894561230111","bankIFSC":"ISISA234","bankName":"State Bank of India","salaryMonth":"2025-04-01","remarks":null}]

Request

None

Responses

🟢200Success
application/json
Body
array of:
id
integer 
optional
documentId
string 
optional
createdAt
string 
optional
updatedAt
string 
optional
publishedAt
string 
optional
locale
null 
optional
basicPay
integer 
optional
hra
integer 
optional
otherAllowances
integer 
optional
grossSalary
integer 
optional
epf
integer 
optional
pt
integer 
optional
deductions
integer 
optional
netSalary
integer 
optional
bankAccountNumber
string 
optional
bankIFSC
string 
optional
bankName
string 
optional
salaryMonth
string 
optional
remarks
null 
optional
Previous
delete
Next
create
Built with