Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
curl -X GET 'https://api.example.com/memberships?subjectId=sub_123&scopeId=scope_456' \ -H 'Authorization: Bearer YOUR_TOKEN'
const axios = require('axios'); const { data } = await axios.get('https://api.example.com/memberships', { params: { subjectId: 'sub_123', scopeId: 'scope_456' }, headers: { 'Authorization': 'Bearer YOUR_TOKEN' }, });
[ { "id": "mem_789", "subjectId": "sub_123", "scopeId": "scope_456" } ]
Get memberships for a subject in one or more scopes
scopeId
scopeIds
Show Membership object
Was this page helpful?