get https://www.keycafe.com/v0/organizationMembership
Retrieve data for multiple memberships with a GET request to the endpoint.
You can search by organization ID to retrieve all memberships associated with the specified organization:
curl -u '[email protected]:{password}' https://www.keycafe.com/v0/organizationMembership?organization=123456 -H "Accept: application/json"
Alternatively, you can search by user ID to find all memberships associated with the specified user:
curl -u '[email protected]:{password}' https://www.keycafe.com/v0/organizationMembership?user=123456 -H "Accept: application/json"
Omitting search parameters returns all memberships.
Results are limited to 50 per page, with additional pages available via the Link response header:
Link: <https://www.keycafe.com/v0/organizationMembership?organization=123456&page=2>; rel="next", <https://www.keycafe.com/v0/organizationMembership?organization=123456&page=5>; rel="last"