cURL
curl --request GET \ --url https://api.aspect-dev.systems/v1/organizations/{organization}/memberships/{id} \ --header 'Authorization: Bearer <token>'
{ "data": { "id": "<string>", "type": "memberships", "attributes": { "id": "<string>", "name": [ "<unknown>" ], "type": "public" }, "relationships": { "division": { "data": { "type": "divisions", "id": "<string>" } } } }, "included": [ { "id": "<string>", "type": "divisions", "attributes": { "id": "<string>", "name": "<string>", "industry": "golf" } } ] }
Retrieve a specific membership by its ID.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Available includes are division. You can include multiple options by separating them with a comma.
division
MembershipResource
Show child attributes