Skip to content

Gym disbursements

Request

Disbursement payments made to your club

Security
OAuth2 and ApiKeyAuth
Query
fromdatestring^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}(\.\d+)?$

Filter disbursements by payment date and time.

Example:fromdate=2024-08-24T00:00:00
offsetinteger, (int32)

The index of the first result to return. Use with limit to get the next page of search results.

limitinteger, (int32), [ 0 .. 500 ]

The maximum number of results to return.

Default:500
GET
/financial/disbursements
curl -i -X GET \
  'https://api.clubfit.net.au/v1/financial/disbursements?fromdate=2024-08-24T00%3A00%3A00&offset=0&limit=500' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
  -H 'x-api-key: YOUR_API_KEY_HERE'

Responses

Disbursements matching criteria

Bodyapplication/json
hrefstring

Current API URL

Example:"https://api.clubfit.net.au/v1/financial/disbursements"
nextstring

Next API URL to retrieve the next page

Example:"https://api.clubfit.net.au/v1/financial/disbursements?limit=500&offset=500"
dataArray of objects(Disbursement)
Response
{ "href": "https://api.clubfit.net.au/v1/financial/disbursements", "next": "https://api.clubfit.net.au/v1/financial/disbursements?limit=500&offset=500", "data": [ {} ] }