Get project participants

get/projects/{projectId}/participants
Internal-Use Only

Returns a list of project participants. Standard paging, filtering, and options are available. The media type of the returned collection items is application/vnd.sas.project.participant. Default sorting for this collection is name:ascending. HEAD is also supported and returns status and headers only.

Request Samples

1

Response Samples

1{
2 "name": "string",
3 "start": 0,
4 "limit": 0,
5 "count": 0,
6 "accept": "string",
7 "links": [
8 {
9 "method": "string",
10 "rel": "string",
11 "uri": "string",
12 "href": "string",
13 "title": "string",
14 "type": "string",
15 "itemType": "string",
16 "responseType": "string",
17 "responseItemType": "string"
18 }
19 ],
20 "version": 0,
21 "items": [
22 {
23 "id": "string",
24 "identityUri": "http://example.com",
25 "role": "contributor",
26 "version": 0,
27 "name": "string",
28 "type": "user",
29 "avatarUri": "http://example.com",
30 "createdBy": "string",
31 "creationTimeStamp": "2019-08-24T14:15:22Z",
32 "modifiedBy": "string",
33 "modifiedTimeStamp": "2019-08-24T14:15:22Z",
34 "links": [
35 {
36 "method": "string",
37 "rel": "string",
38 "uri": "string",
39 "href": "string",
40 "title": "string",
41 "type": "string",
42 "itemType": "string",
43 "responseType": "string",
44 "responseItemType": "string"
45 }
46 ]
47 }
48 ]
49}

Path Parameters

NameTypeRequiredDescription
projectId
string<object-id>
true

The identifier of a specific project.

Query Parameters

NameTypeRequiredDescription
filter
string<filter-criteria>
false

The criteria for filtering the participants. See Filtering in REST APIs.

limit
integer<int64>
false

Maximum number of participants to return. The default is 20.

sortBy
string<sort-criteria>
false

The criteria for sorting the participants. See Sorting in REST APIs.

start
integer<int64>
false

The offset of the first participant to return. The default is 0.

Responses

StatusMeaningDescription
200OKThe request succeeded.Schema
404Not FoundThe project does not exist.Schema