Returns a list of all community members
A comma separated list of tag:value search parameters, a colon separator performs an exact match, a percent separator performs a starts-with search and a greater/less than separator searches number/date ranges.
List of community members
Access denied to resource
Resource not found
Internal server error
curl -i -X GET \ 'https://api.whosonlocation.com/v1/community/{community_id}/member?q=string'
[- {
- "id": 1206,
- "created": "2021-11-26T14:35:28+13:00",
- "modified": "2021-12-31T14:35:28+13:00",
- "external_id": "C123456789",
- "location_id": 35,
- "community_id": 77,
- "name": "John Doe",
- "year": 12,
- "title": "Mr",
- "email": "example@example.org",
- "mobile": "0212345566"
}
]
Creates a new community member.
Community created
Access denied to this resource
Internal server error
{- "location_id": 35,
- "community_id": 77,
- "external_id": "C123456789",
- "name": "John Doe",
- "year": 12,
- "title": "Mr",
- "email": "example@example.org",
- "mobile": "0212345566"
}
{- "id": 1206,
- "created": "2021-11-26T14:35:28+13:00",
- "modified": "2021-12-31T14:35:28+13:00",
- "external_id": "C123456789",
- "location_id": 35,
- "community_id": 77,
- "name": "John Doe",
- "year": 12,
- "title": "Mr",
- "email": "example@example.org",
- "mobile": "0212345566"
}
Retrieves a single community member, filtering with the provided ID.
Access denied to resource
Resource not found
Internal server error
curl -i -X GET \ 'https://api.whosonlocation.com/v1/community/{community_id}/member/:id'
{- "id": 1206,
- "created": "2021-11-26T14:35:28+13:00",
- "modified": "2021-12-31T14:35:28+13:00",
- "external_id": "C123456789",
- "location_id": 35,
- "community_id": 77,
- "name": "John Doe",
- "year": 12,
- "title": "Mr",
- "email": "example@example.org",
- "mobile": "0212345566"
}
Updates the details of a community member.
Information used to create the community member record
Updated resource
Access denied to this resource
Internal server error
{- "name": "Harry Dresden",
- "external_id": "C123456789",
- "year": 12,
- "title": "Mr",
- "email": "emailaddress@mailinator.com",
- "mobile": "0212345566"
}
{- "id": 1206,
- "created": "2021-11-26T14:35:28+13:00",
- "modified": "2021-12-31T14:35:28+13:00",
- "external_id": "C123456789",
- "location_id": 35,
- "community_id": 77,
- "name": "John Doe",
- "year": 12,
- "title": "Mr",
- "email": "example@example.org",
- "mobile": "0212345566"
}
Deletes a community member using the provided ID.
Community member deleted
Access denied to resource
Resource not found
Internal server error
curl -i -X DELETE \ 'https://api.whosonlocation.com/v1/community/{community_id}/member/:id'