Team member list
GET/companies/:company-id/teams/:teamName/members
Team member list
Request
Path Parameters
teamName stringrequired
Query Parameters
offset number
Default value: 0
limit number
Possible values: >= 1
Default value: 10
Responses
- 200
Retrieve the list of team members
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
id stringrequired
name stringrequired
email stringrequired
providers
object
nullable
Provider IDs associated with the entity. This field contains a mapping where each key represents a provider name and the value is an array of provider-specific IDs for this entity
prisme
object
nullable
id stringnullable
profile stringnullable
specific
object
nullable
Value specific to the manager with arbitrary structure
nullable
leader booleanrequired
[
{
"id": "adfdfaca-48f0-4f3b-b30a-c6d97293090c",
"name": "Jean dupont",
"email": "jean.dupont@company.tld",
"providers": {
"prisme": {
"id": "id1",
"profile": "provider1"
}
},
"specific": {},
"leader": true
}
]
Loading...