Coinbase Prime API
cURL
curl --request GET \ --url https://api.prime.coinbase.com/v1/portfolios/{portfolio_id}/users
{ "users": [ { "id": "<string>", "name": "<string>", "email": "<string>", "portfolio_id": "<string>", "entity_id": "<string>", "role": "AUDITOR" } ], "pagination": { "next_cursor": "<string>", "sort_direction": "DESC", "has_next": true } }
List all users associated with a given portfolio.
The portfolio ID.
Cursor used for pagination (last consumed record)
Number of items to retrieve
Sorting order
DESC
ASC
A successful response.
The portfolio users.
Show child attributes
The unique ID of the user.
The name of the user.
The email of the user.
The portfolio to which this user and associated permissions are identified.
The entity to which this user and associated permissions are identified.
AUDITOR
SIGNATORY
ADMIN
INITIATOR
REVIEWER
TRADER
FULL_TRADER
TEAM_MANAGER
APPROVER
TAX_MANAGER
Cursor to navigate to next page
A boolean value indicating whether there are more items to paginate through
Was this page helpful?