Monthly Fee Status

GET /get-monthly-fee-status

Get monthly fee status of all users or a specific user with pagination and other optional parameters

Headers

Name
Value

Content-Type

application/json

Parameters

Name
Type
Description

token*

string

Authrization Token

url_alias*

string

Url Alias of portal

month

integer

Month in numeric

year

integer

Year in numeric

user_id

integer

User Id

size

integer

Records per page (default size is 50 per page)

page

integer

Page Number

Response

{
  "status": "Success",
  "message": "Monthly Fee Status Listing",
  "data": {
    "current_page": 1,
    "first_page_url": "",
    "from": null,
    "last_page": 1,
    "last_page_url": "",
    "per_page": 50,
    "to": null,
    "total": 0,
    "listing": "[]"
  }
}

Last updated