# Debt collection

Member details sent to debt collection

Endpoint: GET /financial/debtcollection
Version: 1.1
Security: OAuth2, ApiKeyAuth

## Query parameters:

  - `fromdate` (string)
    Filter by date sent to debt collection.

  - `offset` (integer)
    The index of the first result to return. Use with limit to get the next page of search results.

  - `limit` (integer)
    The maximum number of results to return.

## Response 200 fields (application/json):

  - `href` (string)
    Current API URL
    Example: https://api.clubfit.net.au/v1/financial/debtcollection

  - `next` (string)
    Next API URL to retrieve the next page
    Example: https://api.clubfit.net.au/v1/financial/debtcollection?limit=500&offset=500

  - `data` (array)

  - `data.Amount` (number)
    Amount sent to debt collection for retrieval
    Example: 11.95

  - `data.DebtCollectionDate` (string)
    ISO 8601 date and time with no UTC offset, e.g. 2024-08-24T14:30:00. Clients must not send an offset or trailing Z.
    Example: 2000-01-02T00:00:00

  - `data.MemberNumber` (string)
    Example: G123

  - `data.FirstName` (string)
    Example: John

  - `data.LastName` (string)
    Example: Doe

  - `data.Email` (string)
    Example: john@doe.com

  - `data.Mobile` (string)
    Example: 0420000000

  - `data.Address` (string)
    Example: 123 my street,Sunnybank,QLD,4176

