Click here for a complete list of routes.
/search
GET /search restricted
This request returns a list of records satisfying search criteria. Following fields are used to find the members: the phone numbers, name, email addresses and company name.
The following is a sample HTTP GET request and response. The placeholders
shown need to be replaced with actual values.
Request example
GET /v2/search?q
=Franz+Must
&type
=ALL
& HTTP/1.1 Host: api.lionsclubs.ch X-Authorization:access-token
Response example
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length
{
"success": true,
"count": 2,
"members": [
{
"id": 5,
"fullName": "Franz Muster",
"...": "..."
},
{
"id": 9,
"fullName": "Franz Mustermann",
"...": "..."
}
],
"clubs": []
}