developer_space_members_list
List team members in a developer space with cursor-based pagination. Returns member details including roles and contact information.
Instructions
List team members in the developer space. Returns {members:[{aaid, roles, categories, email, userName}], next}. CURSOR-paginated, but with a NON-STANDARD shape (unlike the links.next URL used by other list tools): next is a BARE opaque cursor token (or absent on the last page) — pass its value straight back as the cursor param to get the following page. Page size via limit (default 10, max 50).
📖 Spec (GET /rest/3/developer-space/{developerId}/members?limit={limit}&cursor={cursor}): https://developer.atlassian.com/platform/marketplace/rest/v4/api-group-developer-space/#api-rest-3-developer-space-developerid-members-limit-limit-cursor-cursor-get
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Page size (default 10, max 50). | |
| cursor | No | Opaque token from the previous response's top-level `next` field (a bare token, NOT a URL). | |
| developerId | No | a1b2c3d4-e5f6-7890-abcd-ef1234567890 |