List Product Members
GET/v1/products/:productId/members
This endpoint returns the list of Members that belongs
to the given Product, identified by the productId
parameter.
Request
Path Parameters
productId uuidrequired
The identifier of the Product.
Responses
- 200
- 400
- 404
- 429
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
userId stringnullable
Identifier of the Member.
productId uuid
Identifier of the Product where the Member has access.
permissionGroupId int64
Identifier of the Member's Permission Group.
fullName stringnullable
Name of the Member.
email stringnullable
Email of the Member.
[
{
"userId": "string",
"productId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"permissionGroupId": 0,
"fullName": "string",
"email": "string"
}
]
Bad request.
Not found.
Too many requests. In case of the request rate exceeds the rate limits.
Loading...