Returns a list of active and published ScubaTribe accounts.

GET Parameters

Parameter Description  

limit (numeric)

The number of records to return
Default: 15

offset (numeric)

The number of records to 'offset' the results by

(for pagination)

start_date (UTC date-time)

A start date filter
Default: First day of this month

e.g. 1969-12-31T16:00:00Z

end_date (UTC date-time)

An end date filter
Default: Current Time

e.g. 3455-04-19T17:13:51Z
* denotes a required field

Example JSON response:

{
"results": [
{
"user_id": 213,
"first_name": "Chris",
"last_name": "Smith",
"company": "Your Example Dave Centre",
"address_1": "37 new street",
"address_2": "",
"city": "Birmingham",
"state": "West Midlandsa",
"zip": WM12 123,
"country_code": "UK",
"country": "United Kingdom",
"created": "2014-03-08T05:50:51Z"
},
...
],
"records_from": 1,
"records_to": 15,
"start_date": "2014-03-01T23:00:00Z",
"end_date": "2014-03-03T23:00:00Z",
"num_records_total": 34,
"num_records": 15,
"status": "OK"
}

 

Back to Top